13 lines
No EOL
450 B
TypeScript
13 lines
No EOL
450 B
TypeScript
import React from 'react';
|
|
import {Typography, Paper} from '@material-ui/core';
|
|
import {ArrowBack as ArrowBackIcon} from '@material-ui/icons';
|
|
import { Headline, BackItem, NavList, CommonMenuList } from '../component/mod';
|
|
|
|
export const SettingPage = ()=>{
|
|
const menu = CommonMenuList();
|
|
return (<Headline menu={menu}>
|
|
<Paper>
|
|
<Typography variant='h2'>Setting</Typography>
|
|
</Paper>
|
|
</Headline>);
|
|
}; |