learnlytics-go/templ/examples/integration-react/react/components.tsx

8 lines
286 B
TypeScript
Raw Normal View History

2025-03-20 12:35:13 +01:00
import React from "react";
export const Header = () => (<h1>React component Header</h1>);
export const Body = () => (<div>This is client-side content from React</div>);
export const Hello = (name: string) => (<div>Hello {name} (Client-side React, rendering server-side data)</div>);