meriadec
7 years ago
8 changed files with 72 additions and 13 deletions
@ -0,0 +1,15 @@ |
|||
// @flow
|
|||
|
|||
import React, { PureComponent } from 'react' |
|||
|
|||
import Box from 'components/base/Box' |
|||
|
|||
type Props = {} |
|||
|
|||
class AccountPage extends PureComponent<Props> { |
|||
render() { |
|||
return <Box>{'account'}</Box> |
|||
} |
|||
} |
|||
|
|||
export default AccountPage |
@ -0,0 +1,15 @@ |
|||
// @flow
|
|||
|
|||
import React, { PureComponent } from 'react' |
|||
|
|||
import Box from 'components/base/Box' |
|||
|
|||
type Props = {} |
|||
|
|||
class SettingsPage extends PureComponent<Props> { |
|||
render() { |
|||
return <Box>{'settings'}</Box> |
|||
} |
|||
} |
|||
|
|||
export default SettingsPage |
Loading…
Reference in new issue