Describe the bug
Web container just refuses to load, no matter what I do.
Link to the blitz that caused the error
https://stackblitz.com/edit/vitejs-vite-wppygrbw?file=index.html&terminal=dev
Steps to reproduce
Just go to stackblitz, write a normal component and try to render it. It just won't show.
Expected behavior
I have repeatedly created components that consited of states as well, trying to manipulated data entries; where it would look like this: import React, { useState } from 'react'
function App() {
const [tasks, setTasks] = useState([])
const [inputText, setInputText] = useState('')
return (
<>
LifeBoard
Tasks
Add
</>
)
}
export default App ; Whenever I try to render it it just fails to road the Web container even when I adjust which file is imported
Parity with Local
Screenshots
Platform
Browser name = Chrome
Full version = 151.0.0.0
Major version = 151
navigator.appName = Netscape
navigator.userAgent = Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/151.0.0.0 Safari/537.36
performance.memory = {
"totalJSHeapSize": 45729811,
"usedJSHeapSize": 43379423,
"jsHeapSizeLimit": 1174405120
}
Hash = d5306e6f
Additional context
Just practicing basic React components and states.
Describe the bug
Web container just refuses to load, no matter what I do.
Link to the blitz that caused the error
https://stackblitz.com/edit/vitejs-vite-wppygrbw?file=index.html&terminal=dev
Steps to reproduce
Just go to stackblitz, write a normal component and try to render it. It just won't show.
Expected behavior
I have repeatedly created components that consited of states as well, trying to manipulated data entries; where it would look like this: import React, { useState } from 'react'
function App() {
const [tasks, setTasks] = useState([])
const [inputText, setInputText] = useState('')
return (
<>
LifeBoard
Tasks
Add
</>
)
}
export default App ; Whenever I try to render it it just fails to road the Web container even when I adjust which file is imported
Parity with Local
Screenshots
Platform
Additional context
Just practicing basic React components and states.