UNPKG

@wordpress/element

Version:
16 lines (13 loc) 279 B
/** * Internal dependencies */ import Platform from '../platform'; describe( 'Platform', () => { it( 'is chooses the right thing', () => { const element = Platform.select( { web: <div />, native: <button />, } ); expect( element ).toEqual( <div /> ); } ); } );