41432bc346
* feat: add account tabs * chore: bump * refactor: change network tab for old accounting * feat: new fonts and text transformation, chequebook tab * feat: polishing
11 lines
228 B
TypeScript
11 lines
228 B
TypeScript
import { Box, Typography } from '@material-ui/core'
|
|
import { ReactElement } from 'react'
|
|
|
|
export function Header(): ReactElement {
|
|
return (
|
|
<Box mb={4}>
|
|
<Typography variant="h1">Account</Typography>
|
|
</Box>
|
|
)
|
|
}
|