Added toast and copy to clipboard functionality
This commit is contained in:
6
src/utils/root.ts
Normal file
6
src/utils/root.ts
Normal file
@ -0,0 +1,6 @@
|
||||
const rootDiv = document.querySelector<HTMLDivElement>("#app")
|
||||
if (!rootDiv) {
|
||||
const rootDiv = document.createElement('div')
|
||||
rootDiv.id = 'app'
|
||||
}
|
||||
export default rootDiv
|
Reference in New Issue
Block a user