mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-13 21:01:21 +08:00
10 lines
177 B
TypeScript
10 lines
177 B
TypeScript
import React from "react";
|
|
|
|
export function ServerStatic(props: React.PropsWithChildren<{}>) {
|
|
return (
|
|
<span>
|
|
{props.children ?? "ServerStatic"}
|
|
</span>
|
|
);
|
|
}
|