die
This commit is contained in:
parent
aa20cf0f0b
commit
1bf90caeec
17 changed files with 147 additions and 7 deletions
10
app/javascript/packs/friends.js
Normal file
10
app/javascript/packs/friends.js
Normal file
|
@ -0,0 +1,10 @@
|
|||
import App from '../friends.svelte'
|
||||
|
||||
document.addEventListener('DOMContentLoaded', () => {
|
||||
const app = new App({
|
||||
target: document.body,
|
||||
});
|
||||
|
||||
window.app = app;
|
||||
})
|
||||
|
0
app/javascript/packs/games.js
Normal file
0
app/javascript/packs/games.js
Normal 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']
|
||||
}
|
||||
});
|
||||
|
10
app/javascript/packs/portfolio.js
Normal file
10
app/javascript/packs/portfolio.js
Normal file
|
@ -0,0 +1,10 @@
|
|||
import App from '../portfolio.svelte'
|
||||
|
||||
document.addEventListener('DOMContentLoaded', () => {
|
||||
const app = new App({
|
||||
target: document.body,
|
||||
});
|
||||
|
||||
window.app = app;
|
||||
})
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue