import { createApp } from 'vue'
import './style.css'
import DisplayPage from './components/DisplayPage.vue'
const app = createApp(DisplayPage)
app.mount('#app')