13 lines
215 B
TypeScript
13 lines
215 B
TypeScript
interface ComponentProps {
|
|
name?: string;
|
|
}
|
|
|
|
function Component(props: ComponentProps) {
|
|
return props.name!.toUpperCase();
|
|
}
|
|
|
|
export const FIXTURE_ENTRYPOINT = {
|
|
fn: Component,
|
|
params: [{name: 'Alice'}],
|
|
};
|