20 lines
416 B
TypeScript
20 lines
416 B
TypeScript
|
|
'use client'
|
||
|
|
|
||
|
|
// MUI Imports
|
||
|
|
import Button from '@mui/material/Button'
|
||
|
|
import Typography from '@mui/material/Typography'
|
||
|
|
|
||
|
|
const ReportHeader = () => {
|
||
|
|
return (
|
||
|
|
<div className='flex flex-wrap sm:items-center justify-between max-sm:flex-col gap-6'>
|
||
|
|
<div>
|
||
|
|
<Typography variant='h4' className='mbe-1'>
|
||
|
|
Laporan
|
||
|
|
</Typography>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
)
|
||
|
|
}
|
||
|
|
|
||
|
|
export default ReportHeader
|