mirror of https://github.com/sveltejs/svelte
6 lines
112 B
6 lines
112 B
6 years ago
|
<script>
|
||
|
import Nested from './Nested.svelte';
|
||
|
export let currentUser;
|
||
|
</script>
|
||
|
|
||
|
<Nested user={currentUser}/>
|