TinyForest system front-end written with ReactJS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
248 B

  1. import React from 'react';
  2. import ReactDOM from 'react-dom';
  3. import App from './App';
  4. it('renders without crashing', () => {
  5. const div = document.createElement('div');
  6. ReactDOM.render(<App />, div);
  7. ReactDOM.unmountComponentAtNode(div);
  8. });