mirror of
https://github.com/JefferyHcool/BiliNote.git
synced 2026-08-15 11:04:27 +08:00
11 lines
135 B
TypeScript
11 lines
135 B
TypeScript
import { Outlet } from 'react-router-dom'
|
|
|
|
const Index = () => {
|
|
return (
|
|
<>
|
|
<Outlet />
|
|
</>
|
|
)
|
|
}
|
|
export default Index
|