Implement Code Challenge component with styling and WebSocket integration

This commit is contained in:
ishikabhoyar
2025-07-22 15:26:54 +05:30
parent e61bd7cfca
commit e12bbcfc6a
4 changed files with 1017 additions and 2 deletions

View File

@@ -1,10 +1,10 @@
import VSCodeUI from "./components/VSCodeUI.jsx"
import CodeChallenge from "./components/CodeChallenge.jsx"
import "./index.css"
function App() {
return (
<div className="App">
<VSCodeUI />
<CodeChallenge />
</div>
)
}