mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-16 21:08:38 +08:00
12 lines
192 B
TypeScript
12 lines
192 B
TypeScript
"use client";
|
|
|
|
import React from "react";
|
|
|
|
export function ClientStatic(props: React.PropsWithChildren<{}>) {
|
|
return (
|
|
<span>
|
|
{props.children ?? "ClientStatic"}
|
|
</span>
|
|
);
|
|
}
|