diff --git a/packages/strapi-plugin-content-manager/admin/src/components/Search/index.js b/packages/strapi-plugin-content-manager/admin/src/components/Search/index.js new file mode 100644 index 0000000000..e96a2305f2 --- /dev/null +++ b/packages/strapi-plugin-content-manager/admin/src/components/Search/index.js @@ -0,0 +1,27 @@ +/* +* +* Search +* +*/ + +import React from 'react'; + +import styles from './styles.scss'; + +class Search extends React.Component { + state = { value: '' }; + + handleChange = ({ target }) => { + this.setState({ value: target.value }); + } + + render() { + return ( +