2021-03-23 20:15:44 -07:00
|
|
|
---
|
2021-04-09 14:23:25 -06:00
|
|
|
import Hello from '../components/Hello.jsx';
|
|
|
|
import Later from '../components/Goodbye.vue'; // use different specifier
|
2021-06-14 13:24:37 -04:00
|
|
|
import ArrowFunction from '../components/ArrowFunction.jsx';
|
2021-07-27 18:26:46 +05:30
|
|
|
import PropsSpread from '../components/PropsSpread.jsx';
|
2021-07-09 09:00:32 -04:00
|
|
|
import {Research2} from '../components/Research.jsx';
|
2021-07-27 18:26:46 +05:30
|
|
|
|
|
|
|
const someProps = {
|
|
|
|
text: 'Hello world!',
|
|
|
|
};
|
2021-03-23 20:15:44 -07:00
|
|
|
---
|
2021-03-23 13:47:54 -04:00
|
|
|
|
2021-03-24 16:01:28 -07:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<!-- Head Stuff -->
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<Hello name="world" />
|
2021-04-09 14:23:25 -06:00
|
|
|
<Later name="baby" />
|
2021-06-14 13:24:37 -04:00
|
|
|
<ArrowFunction />
|
2021-07-27 18:26:46 +05:30
|
|
|
<PropsSpread {...someProps}/>
|
2021-07-09 09:00:32 -04:00
|
|
|
<Research2 client:idle />
|
2021-03-24 16:01:28 -07:00
|
|
|
</body>
|
2021-04-09 14:23:25 -06:00
|
|
|
</html>
|