cluedin-widget
Version:
This project contains all the pages needed for browsing entities and searching them. The aim is to replace the CluedIn.Webapp project with this one when all the pages ( including the Admin page ) will be ported to REACT.
19 lines (15 loc) • 359 B
JSX
import React from 'react';
const SearchBar = () => {
const style = {
width: '100%',
boxSizing: 'border-box',
height: '25px',
fontSize: '12px',
};
return (
<div style={{ margin: '2px' }}>
<input style={style} placeholder="Search for a company, person, document..." type="text" />
</div>
);
};
export default SearchBar;