mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-26 01:06:23 +02:00
13 lines
243 B
TypeScript
13 lines
243 B
TypeScript
import "./suggestion.css";
|
|
|
|
export const metadata = {
|
|
title: "SurfSense Suggestion",
|
|
};
|
|
|
|
export default function SuggestionLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return <div className="suggestion-body">{children}</div>;
|
|
}
|