mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-06 08:16:03 +00:00
8 lines
No EOL
167 B
Handlebars
8 lines
No EOL
167 B
Handlebars
export const
|
|
{{pascalCase name}}
|
|
= ({ children }: { children: React.ReactNode }) => { return (
|
|
<div>
|
|
<h1>{{pascalCase name}} Component</h1>
|
|
{children}
|
|
</div>
|
|
); }; |