UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

1 lines 572 B
define([], function() { return "import * as React from 'react';\nimport {\n SearchBox\n} from '../../../../index';\nimport './SearchBox.Small.Example.scss';\n\nexport class SearchBoxSmallExample extends React.Component<any, any> {\n public render() {\n return (\n <div className='ms-SearchBoxSmallExample'>\n <SearchBox\n onChange={ (newValue) => console.log('SearchBox onChange fired: ' + newValue) }\n onSearch={ (newValue) => console.log('SearchBox onSearch fired: ' + newValue) }\n />\n </div>\n );\n }\n\n}\n"; });