aboutsummaryrefslogtreecommitdiff
path: root/src/main.js
blob: 9af70cbb95bc7f1c7ac86c531b18126b3813872c (plain)
1
2
3
4
5
6
7
8
9
10
import App from './App.html';

const app = new App({
	target: document.body,
	data: {
		name: 'This is my name'
	}
});

export default app;