15 lines
235 B
TypeScript
15 lines
235 B
TypeScript
import Sidebar from "@/components/shared/Sidebar";
|
|
|
|
import { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Docs - SVRJS",
|
|
};
|
|
|
|
export default function Page() {
|
|
return (
|
|
<>
|
|
<Sidebar />
|
|
</>
|
|
);
|
|
}
|