mirror of
https://github.com/mitchell/mjfs.us.git
synced 2025-07-03 01:16:10 +00:00
10 lines
253 B
JavaScript
10 lines
253 B
JavaScript
import React from "react"
|
|
import ReactDOM from "react-dom"
|
|
import Website from "./Website"
|
|
|
|
it("renders without crashing", () => {
|
|
const div = document.createElement("div")
|
|
ReactDOM.render(<Website />, div)
|
|
ReactDOM.unmountComponentAtNode(div)
|
|
})
|