import { createApp } from 'vue';
import App from './App.vue';
import './css/style.css';

createApp(App).mount('#app');
