mirror of
https://github.com/hodgef/simple-keyboard.git
synced 2025-02-21 00:23:02 +08:00
9 lines
232 B
JavaScript
9 lines
232 B
JavaScript
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import Keyboard from './Keyboard';
|
|
|
|
it('Keyboard renders without crashing', () => {
|
|
const div = document.createElement('div');
|
|
ReactDOM.render(<Keyboard />, div);
|
|
});
|