Created
June 16, 2019 17:22
-
-
Save abhishekjakhar/b4e1e3c9c54de374bec4d790616197d2 to your computer and use it in GitHub Desktop.
React Fragment (Table Columns Component) (div)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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