/
concept-collection
/
ephys_compression_tests
Jump to
/
Appearance
Match my system
Paper
GitHub
Slate
Midnight
Terminal
Sign in
concept-collection
/
ephys_compression_tests
Code
Commits
Issues
0
Pull requests
0
Actions
Branches
2
Tags
0
Site
bad39f2
Branches
main
benchmark-results
ephys_compression_tests
/
web-ui
/
src
/
main.tsx
10 lines · 235 B
Copy
Copied
Blame
History
Raw
1
import
{
StrictMode
}
from
"react"
;
2
import
{ createRoot }
from
"react-dom/client"
;
3
import
"./index.css"
;
4
import
App
from
"./App.tsx"
;
5
6
createRoot
(
document
.
getElementById
(
"root"
)!).
render
(
7
<
StrictMode
>
8
<
App
/>
9
</
StrictMode
>
,
10
);
↑
↓
move
↵
open
esc
close