Skip to content

Instantly share code, notes, and snippets.

@abhishekjakhar
Created June 16, 2019 17:22
Show Gist options
  • Save abhishekjakhar/b4e1e3c9c54de374bec4d790616197d2 to your computer and use it in GitHub Desktop.
Save abhishekjakhar/b4e1e3c9c54de374bec4d790616197d2 to your computer and use it in GitHub Desktop.
React Fragment (Table Columns Component) (div)
import React from 'react';
const TableColumns = (props) => {
const { name, subject } = props;
return (
<div>
<td>{name}</td>
<td>{subject}</td>
</div>
);
}
export default TableColumns;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment