diff options
| author | Olivi <[email protected]> | 2026-04-13 23:18:57 +0800 |
|---|---|---|
| committer | Olivi <[email protected]> | 2026-04-13 23:18:57 +0800 |
| commit | c82022141a3febb6d26d9661fafe8a24bfecf16b (patch) | |
| tree | 753297670abb785916ed0e36c003e7624835642b /src | |
| parent | f6531f080ef15c0a55387057cdbc4be71371818c (diff) | |
chore: remove ContentHeader component from Config and Home components
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/Config.tsx | 1 | ||||
| -rw-r--r-- | src/components/Home.tsx | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/src/components/Config.tsx b/src/components/Config.tsx index 3bf39af..670555f 100644 --- a/src/components/Config.tsx +++ b/src/components/Config.tsx @@ -73,7 +73,6 @@ export default function Config({ return ( <div> - <ContentHeader /> <div className={s0.root}> <div className={s0.card}> <div className={s0.sectionTitle}> diff --git a/src/components/Home.tsx b/src/components/Home.tsx index 195b329..489f4c5 100644 --- a/src/components/Home.tsx +++ b/src/components/Home.tsx @@ -2,7 +2,6 @@ import React from 'react'; import { ClashAPIConfig } from '~/types'; -import ContentHeader from './ContentHeader'; import s0 from './Home.module.scss'; import TrafficNow from './TrafficNow'; @@ -14,7 +13,6 @@ type Props = { export default function Home({ apiConfig, selectedChartStyleIndex }: Props) { return ( <div> - <ContentHeader /> <div className={s0.root}> <TrafficNow apiConfig={apiConfig} selectedChartStyleIndex={selectedChartStyleIndex} /> </div> |
