]> git.r.bdr.sh - rbdr/forum/blame_incremental - app/application.js
Fix linter and linteer warnings
[rbdr/forum] / app / application.js
... / ...
CommitLineData
1import Forum from './forum.svelte';
2
3/* global document */
4
5const forum = new Forum({
6 target: document.body,
7 props: {
8 greeting: 'yooo'
9 }
10});
11
12export default forum;