Files
blog-service/frontend/src/components/Navbar.tsx
T

28 lines
546 B
TypeScript
Raw Normal View History

2025-11-08 23:26:44 -06:00
import { Button } from '@mui/material';
import { Link } from 'react-router-dom';
2025-11-08 23:07:44 -06:00
export default function Navbar() {
return (
2025-11-08 23:35:37 -06:00
<div className="flex flex-row gap-3">
2025-11-08 23:26:44 -06:00
<Button
component={Link}
to="/"
2025-11-08 23:35:37 -06:00
variant="outlined"
2025-11-09 00:06:54 -06:00
className="flex flex-1"
2025-11-08 23:26:44 -06:00
>
Home
</Button>
2025-11-08 23:35:37 -06:00
2025-11-08 23:26:44 -06:00
<Button
component={Link}
2025-11-09 00:06:54 -06:00
to="/articleList"
2025-11-08 23:35:37 -06:00
variant="outlined"
2025-11-09 00:06:54 -06:00
className="flex flex-1"
2025-11-08 23:26:44 -06:00
>
Article
</Button>
2025-11-09 00:06:54 -06:00
<div className="flex flex-8"></div>
2025-11-08 23:07:44 -06:00
</div>
);
};