chore: update default theme style

This commit is contained in:
JustSong
2025-01-31 22:50:48 +08:00
parent e8ea87fff3
commit 28a271a896
3 changed files with 31 additions and 28 deletions

View File

@@ -1,14 +1,16 @@
import React from 'react';
import { Header, Segment } from 'semantic-ui-react';
import { Card } from 'semantic-ui-react';
import ChannelsTable from '../../components/ChannelsTable';
const Channel = () => (
<>
<Segment>
<Header as='h3'>管理渠道</Header>
<ChannelsTable />
</Segment>
</>
<div className='dashboard-container'>
<Card fluid className='chart-card'>
<Card.Content>
<Card.Header className='header'>管理渠道</Card.Header>
<ChannelsTable />
</Card.Content>
</Card>
</div>
);
export default Channel;