15 lines
231 B
Handlebars
15 lines
231 B
Handlebars
import * as React from "react";
|
|
|
|
interface Props {
|
|
children?: React.ReactNode;
|
|
}
|
|
|
|
export const {{ pascalCase name }} = ({ children }: Props) => {
|
|
return (
|
|
<div>
|
|
<h1>{{ name }}</h1>
|
|
{children}
|
|
</div>
|
|
);
|
|
};
|