Tavaris Brown

by Pritesh Patel

HTML

<!--
Build below mockup using reactJS

Mockup:
https://imgur.com/EpX28AM

1. on click of "Add New" button, user should be able to add the content in the text field with Save and Close buttons.
2. the saved content should appear on each row with "Edit" and " Delete" buttons
3. On Edit, user should be able to edit the content of the row
4. On Delete, that corresponsing row should be removed.
Please make the component fully functional. The content can be static in the HTML.
-->

<div id="app"></div>

React

/* const TableComponent = () => {
  return (
      <div>Hello TableComponent</div>
  )
} */

class TableComponent extends React.Component {
	render() {
  	return (
    	<div>Hello TableComponent</div>
    )
  }
}
ReactDOM.render(<TableComponent />, document.querySelector("#app"))