Files
Flowise/packages/ui/src/layout/MinimalLayout/index.jsx
T
Greg L 0f09faa1bc - Updated .js files to .jsx on frontend.
- Removed Yarn dependency and replaced with PNPM
- Changed Frontend to render via vite
2023-11-23 08:17:06 -05:00

12 lines
227 B
React

import { Outlet } from 'react-router-dom'
// ==============================|| MINIMAL LAYOUT ||============================== //
const MinimalLayout = () => (
<>
<Outlet />
</>
)
export default MinimalLayout