UNPKG

@neo-one/simulation-react

Version:

NEO•ONE Simulation - Bootstrap a decentralized app with NEO•ONE and React.

13 lines (10 loc) 248 B
/** * @jest-environment jsdom */ import React from 'react'; import ReactDOM from 'react-dom'; import Main from '../Main'; it('renders without crashing', () => { const div = document.createElement('div'); ReactDOM.render(<Main />, div); });