Initial commit

This commit is contained in:
Futaki Zoltán
2026-02-09 11:53:54 +01:00
parent 26ebc6f2e8
commit a04704c9f7
22 changed files with 5988 additions and 0 deletions

15
src/components/FoMenu.jsx Normal file
View File

@@ -0,0 +1,15 @@
import React from 'react'
import { Link } from 'react-router-dom'
const FoMenu = () => {
return (
<nav className='nav d-flex gap-3'>
<Link className='btn btn-outline-dark flex-fill' to="/">Összefoglalás</Link>
<Link className='btn btn-outline-dark flex-fill' to="/lista">Autók listája</Link>
<Link className='btn btn-outline-dark flex-fill' to="/uj">Új autó hozzáadása</Link>
</nav>
)
}
export default FoMenu