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

25 lines
425 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 (
<div className="flex-row">
2025-11-08 23:26:44 -06:00
<Button
variant="outlined"
component={Link}
to="/"
>
Home
</Button>
<Button
variant="outlined"
component={Link}
to="/article"
>
Article
</Button>
2025-11-08 23:07:44 -06:00
</div>
);
};