mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-27 11:03:14 +03:00
10 lines
149 B
React
10 lines
149 B
React
|
{{#named?}}export {{/named?}}function {{name}}() {
|
||
|
return (
|
||
|
<div>Hello world!</div>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
{{#default?}}
|
||
|
export default {{name}}
|
||
|
{{/default?}}
|