stack/apps/partial-prerendering/src/app/sandbox/server-static.tsx
2024-04-27 14:23:54 +02:00

10 lines
177 B
TypeScript

import React from "react";
export function ServerStatic(props: React.PropsWithChildren<{}>) {
return (
<span>
{props.children ?? "ServerStatic"}
</span>
);
}