mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-28 11:00:55 +03:00
0f09faa1bc
- Removed Yarn dependency and replaced with PNPM - Changed Frontend to render via vite
12 lines
227 B
React
12 lines
227 B
React
import { Outlet } from 'react-router-dom'
|
|
|
|
// ==============================|| MINIMAL LAYOUT ||============================== //
|
|
|
|
const MinimalLayout = () => (
|
|
<>
|
|
<Outlet />
|
|
</>
|
|
)
|
|
|
|
export default MinimalLayout
|