Skip to content

Commit

Permalink
chore: remove re-exporting pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
icfor committed Dec 22, 2023
1 parent 12fd355 commit 6c1e36d
Show file tree
Hide file tree
Showing 11 changed files with 7 additions and 23 deletions.
1 change: 0 additions & 1 deletion src/screens/analytics_tools/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ const AnalyticsTools = () => {
</Grid>
</Grid>
</Stack>

<Section
desc={t("big_dipper")}
title={t("customizable")}
Expand Down
4 changes: 0 additions & 4 deletions src/screens/blog_details/components/index.tsx

This file was deleted.

3 changes: 2 additions & 1 deletion src/screens/blog_details/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ import type { PostDetail } from "@src/utils/ghost";
import { getBlogPostSchema } from "@src/utils/ghost";

import blogPlaceholderImg from "../../../public/images/assets/blog-placeholder.png";
import { Author, SocialMedia } from "./components";
import Author from "./components/author";
import SocialMedia from "./components/social_media";
import * as styles from "./index.module.scss";
import { ContentBox, ContentCSS, LaptopCSS, MobileCSS } from "./styles";

Expand Down

This file was deleted.

2 changes: 1 addition & 1 deletion src/screens/network_guides/components/guide/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { useRouter } from "next/router";
import * as commonStyles from "@src/screens/staking/common.module.scss";
import { type PostDetail, getBlogPostSchema } from "@src/utils/ghost";

import { GuideDetails } from "./components";
import GuideDetails from "./components/guide_details";
import * as styles from "./index.module.scss";

const Trans = dynamic(() => import("next-translate/Trans"), { ssr: false });
Expand Down
4 changes: 0 additions & 4 deletions src/screens/network_guides/components/index.tsx

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { CopyIcon } from "@src/components/icons";
import { getMiddleEllipsis } from "@src/utils/get_middle_ellipsis";
import { getNetworkInfo } from "@src/utils/network_info";

import { InfoCard } from "./components";
import InfoCard from "./components/info_card";
import { useNetworkGuidesHook } from "./hooks";
import * as styles from "./index.module.scss";
import { ContentBox, ContentCSS } from "./styles";
Expand Down
3 changes: 2 additions & 1 deletion src/screens/network_guides/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ import { useEffect } from "react";
import LayoutVal from "@src/components/layout_val";
import AppApolloProvider from "@src/utils/apollo";

import { Guide, NetworkInfo } from "./components";
import Guide from "./components/guide";
import NetworkInfo from "./components/network_info";
import * as styles from "./index.module.scss";
import { LaptopCSS } from "./styles";

Expand Down
3 changes: 0 additions & 3 deletions src/screens/tag/components/index.tsx

This file was deleted.

2 changes: 1 addition & 1 deletion src/screens/tag/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Layout from "@src/components/layout";
import Tags from "@src/components/tags";

import TitlePosts from "../blog/components/title_posts";
import { TagPosts } from "./components";
import TagPosts from "./components/tag_posts";
import { useBlogHook } from "./hooks";
import * as styles from "./index.module.scss";

Expand Down

0 comments on commit 6c1e36d

Please sign in to comment.