14 lines
202 B
TypeScript
14 lines
202 B
TypeScript
export default function Doc() {
|
|
//TODO implement route
|
|
return (
|
|
<>
|
|
<h1>Docs</h1>
|
|
<h2>Tutoriels</h2>
|
|
- video 0 - text 0 ...
|
|
<h2>CheatSheet</h2>
|
|
- vim
|
|
<section></section>
|
|
</>
|
|
)
|
|
}
|