import { createApp } from 'vue'
import Tool from './components/tool';
const rootContainer = document.getElementById('app');
if(rootContainer !== null) {
const app = createApp({
components: {
'v-tool': Tool,
}
});
app.mount(rootContainer);
}