svrjs-nextjs-website/app/docs/page.tsx

10 lines
136 B
TypeScript
Raw Normal View History

import Sidebar from '@/components/shared/Sidebar';
export default function Page() {
return (
<>
<Sidebar />
</>
);
}