Spaces:
Running
Running
File size: 259 Bytes
a80ecb8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import { Metadata } from 'next';
import React from 'react';
export const metadata: Metadata = {
title: 'Library - Perplexica',
};
const Layout = ({ children }: { children: React.ReactNode }) => {
return <div>{children}</div>;
};
export default Layout;
|