11 lines
155 B
React
11 lines
155 B
React
|
|
import {Box,Button} from '@mui/material'
|
||
|
|
|
||
|
|
const RecordEditor = () =>{
|
||
|
|
return(
|
||
|
|
<Box>
|
||
|
|
hello
|
||
|
|
</Box>
|
||
|
|
)
|
||
|
|
}
|
||
|
|
|
||
|
|
export default RecordEditor
|