UNPKG

@appearhere/bloom

Version:

Appear Here's pattern library and styleguide

33 lines (29 loc) 472 B
import React from 'react'; import { render } from 'react-dom'; import RandomSix from './RandomSix'; it('renders without crashing', () => { const children = [{ src: '', alt: '', }, { src: '', alt: '', }, { src: '', alt: '', }, { src: '', alt: '', }, { src: '', alt: '', }, { src: '', alt: '', }]; const div = document.createElement('div'); render( <RandomSix children={children} />, div ); });