6 lines
176 B
TypeScript
6 lines
176 B
TypeScript
const rootDiv = document.querySelector<HTMLDivElement>("#app")
|
|
if (!rootDiv) {
|
|
const rootDiv = document.createElement('div')
|
|
rootDiv.id = 'app'
|
|
}
|
|
export default rootDiv |