mirror of
https://github.com/sveltejs/svelte.git
synced 2024-12-01 17:30:59 +01:00
12 lines
175 B
Svelte
12 lines
175 B
Svelte
<script>
|
|
import Info from './Info.svelte';
|
|
|
|
const pkg = {
|
|
name: 'svelte',
|
|
version: 3,
|
|
speed: 'blazing',
|
|
website: 'https://svelte.dev'
|
|
};
|
|
</script>
|
|
|
|
<Info {...pkg}/> |