10 lines
220 B
TypeScript
10 lines
220 B
TypeScript
import RestaurantLayoutClient from "./RestaurantLayoutClient";
|
|
|
|
export default function Layout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return <RestaurantLayoutClient>{children}</RestaurantLayoutClient>;
|
|
}
|