Kezdeti commit

This commit is contained in:
2026-02-09 10:54:51 +01:00
commit edf3112fe6
23 changed files with 5913 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import React from 'react'
import FoMenu from './FoMenu'
import { Outlet } from 'react-router-dom'
const FoOldal = () => {
return (
<div>
<h1>"Járgány" Autószalon</h1>
<FoMenu />
<Outlet />
</div>
)
}
export default FoOldal