14 lines
231 B
HTML
14 lines
231 B
HTML
<head>
|
|
<title>simple-todos-react</title>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Welcome to Meteor!</h1>
|
|
|
|
{{> hello}}
|
|
</body>
|
|
|
|
<template name="hello">
|
|
<button>Click Me</button>
|
|
<p>You've pressed the button {{counter}} times.</p>
|
|
</template>
|