blob: cf7b6369c80a7bcb32deef6dc4638a394ff570ea [file] [log] [blame]
import * as React from "react";
interface Props {
children?: React.ReactNode;
}
export const {{ pascalCase name }} = ({ children }: Props) => {
return (
<div>
<h1>{{ name }}</h1>
{children}
</div>
);
};