UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

1 lines 511 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 onChange={\n (newValue) => {\n console.log('Search box value changed to: ' + newValue);\n }\n } />\n </div>\n );\n }\n\n}\n"; });