Skip to content

Commit

Permalink
[milzipmoza-developers#1] feat - 메인 페이지 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
MrKwon committed Feb 2, 2020
1 parent 1b02262 commit d9dddc8
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
const Home = () => <h1>Hello world!</h1>;
import * as React from "react";
import AppBarLayout from "../components/templates/AppBarLayout";

export default Home;
const Index = () => {
return (
<AppBarLayout>
<div>
대시보드
</div>
</AppBarLayout>
);
};

export default Index;

0 comments on commit d9dddc8

Please sign in to comment.