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.
24 lines (19 loc) • 524 B
JSX
import React from 'react';
const ContextSelector = () => {
  const activeStyle = {
    display: 'inline-block',
    width: '50%',
  };
  const listStyle = {
    display: 'inline-block',
    width: '50%',
    background: '#ccc',
  };
  return (<div>
    <ul style={{ margin: 0, padding: 0 }}>
      <li style={activeStyle}><a style={{ padding: '10px' }} href="#">Contact</a></li>
      <li style={listStyle}><a style={{ padding: '10px' }} href="#">Company</a></li>
    </ul>
  </div>);
};
export default ContextSelector;