mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
feat: react front init
This commit is contained in:
parent
130123b055
commit
fcd281d1d6
18 changed files with 6594 additions and 0 deletions
15
front/pages/index.tsx
Normal file
15
front/pages/index.tsx
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import type { NextPage } from "next";
|
||||
import { Title } from "./components/ui/styles/title";
|
||||
import Layout from "./components/ui/layout";
|
||||
|
||||
const Home: NextPage = () => {
|
||||
return (
|
||||
<div>
|
||||
<Layout>
|
||||
<Title>Home</Title>
|
||||
</Layout>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default Home;
|
||||
Loading…
Add table
Add a link
Reference in a new issue