9 lines
196 B
JavaScript
9 lines
196 B
JavaScript
|
import * as React from 'react';
|
||
|
import MuiAppBar from '@mui/material/AppBar';
|
||
|
|
||
|
function AppBar(props) {
|
||
|
return <MuiAppBar elevation={0} position="fixed" {...props} />;
|
||
|
}
|
||
|
|
||
|
export default AppBar;
|