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