8 lines
144 B
TypeScript
8 lines
144 B
TypeScript
|
|
import {Typography} from "antd";
|
||
|
|
|
||
|
|
const {Paragraph} = Typography;
|
||
|
|
|
||
|
|
export default function Overview() {
|
||
|
|
return <Paragraph>hi</Paragraph>;
|
||
|
|
}
|