Skip to content

Commit

Permalink
#2 Add wallet page
Browse files Browse the repository at this point in the history
  • Loading branch information
kimjimin4471 committed Jul 3, 2022
1 parent 3ab30b3 commit e477bbd
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions pages/wallet.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import styled from "@emotion/styled";
import React, { FC } from "react";
import * as S from "@views/wallet";

const WalletPage: FC = () => (
<Container>
<S.WalletHeader />
<S.WalletCotent />
</Container>
);

export default WalletPage;

const Container = styled.section`
width: 100vw;
height: 100vh;
`;
2 changes: 1 addition & 1 deletion views/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export {};
export * from "./wallet";

0 comments on commit e477bbd

Please sign in to comment.