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