7 lines
244 B
Text
7 lines
244 B
Text
import type { TemplateOnlyComponent } from '@glimmer/component';
|
|
|
|
const Greet: TemplateOnlyComponent<{ name: string }> = <template>
|
|
<p>Hello, {{@name}}!</p>
|
|
</template>
|
|
|
|
# From https://rfcs.emberjs.com/id/0779-first-class-component-templates
|