This commit is contained in:
jane 2022-04-01 21:16:05 -04:00
parent aa20cf0f0b
commit 1bf90caeec
17 changed files with 147 additions and 7 deletions

View file

@ -0,0 +1,10 @@
import App from '../friends.svelte'
document.addEventListener('DOMContentLoaded', () => {
const app = new App({
target: document.body,
});
window.app = app;
})

View file

View file

@ -11,7 +11,9 @@ document.addEventListener('DOMContentLoaded', () => {
const app = new App({
target: document.body,
props: {
name: 'Svelte'
names: ['sunset', 'luna', 'bonnibel', 'marceline', 'artemis',
'diana', 'constanze', 'twilight', 'bianca', 'dawn', 'rosa', 'akemi',
'glimmer']
}
});

View file

@ -0,0 +1,10 @@
import App from '../portfolio.svelte'
document.addEventListener('DOMContentLoaded', () => {
const app = new App({
target: document.body,
});
window.app = app;
})