feat: user profile/settings pages (#958)

This commit is contained in:
sct
2021-02-18 11:38:24 +09:00
committed by GitHub
parent 29b97ef6d8
commit bbb683e637
50 changed files with 2388 additions and 596 deletions

View File

@@ -0,0 +1,9 @@
import { NextPage } from 'next';
import React from 'react';
import UserProfile from '../../../components/UserProfile';
const UserPage: NextPage = () => {
return <UserProfile />;
};
export default UserPage;