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