import { AppBar as MuiAppBar, Toolbar, Typography, Button, Box } from '@mui/material'; import { Download, MenuBook } from '@mui/icons-material'; interface AppBarProps { onDownload: () => void; } const AppBar: React.FC = ({ onDownload }) => { return ( Proofery - Proof Verification (WIP) ); }; export default AppBar;