Code & Deploy
siGit Code
Git Hosting
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@samitouri
/
QOS-React-1
QOS-React-1
/
fixtures
/
attribute-behavior
/
src
/
App.test.js
Code
Commits
Issues
Pulls
Sessions
CI/CD
main
main
js
8 lines
208 Bytes
Copy permalink
Copy
Raw
1
import
React
from
'
react
'
;
2
import
ReactDOM
from
'
react-dom
'
;
3
import
App
from
'
./App
'
;
4
5
it
(
'
renders without crashing
'
,
()
=>
{
6
const
div
=
document
.
createElement
(
'
div
'
);
7
ReactDOM
.
render
(
<
App
/>
,
div
);
8
});