0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-12-01 17:30:59 +01:00
svelte/test/js/samples/non-imported-component/input.html
2017-05-27 09:52:33 -04:00

13 lines
156 B
HTML

<Imported/>
<NonImported/>
<script>
import Imported from 'Imported.html';
export default {
components: {
Imported,
NonImported
}
};
</script>