rohan13's picture
Flowise Changes
4114d85
raw
history blame contribute delete
227 Bytes
import { Outlet } from 'react-router-dom'
// ==============================|| MINIMAL LAYOUT ||============================== //
const MinimalLayout = () => (
<>
<Outlet />
</>
)
export default MinimalLayout