From 1667d5859cb0263bfaa9bdde2b62995552953159 Mon Sep 17 00:00:00 2001 From: lytrankieio123 Date: Fri, 10 Sep 2021 18:28:35 +0700 Subject: [PATCH] :art: styles: page account :%s --- pages/account.tsx | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 pages/account.tsx diff --git a/pages/account.tsx b/pages/account.tsx new file mode 100644 index 000000000..7da102c52 --- /dev/null +++ b/pages/account.tsx @@ -0,0 +1,13 @@ +import React from 'react'; +import { Layout } from 'src/components/common'; +import { AccountPage } from 'src/components/modules/account'; + +const Account = () => { + return ( + + ); +}; + +Account.Layout = Layout + +export default Account; \ No newline at end of file