8 lines
121 B
TypeScript
8 lines
121 B
TypeScript
|
|
import { Outlet } from 'react-router-dom'
|
|
|
|
export default function ParentView() {
|
|
return (
|
|
<Outlet></Outlet>
|
|
)
|
|
} |