Created
May 18, 2017 19:43
-
-
Save mrcthms/73c5d8e93fcbfc49ef6b7fb1c89dcf29 to your computer and use it in GitHub Desktop.
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'; | |
import './Table.css'; | |
const Table = ({ propTypes }) => ( | |
<table> | |
<thead> | |
<tr> | |
<th>Name</th> | |
<th>Type</th> | |
<th>Required?</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>withHeading</td> | |
<td>bool</td> | |
<td>false</td> | |
</tr> | |
<tr> | |
<td>heading</td> | |
<td>string</td> | |
<td>false</td> | |
</tr> | |
<tr> | |
<td>children</td> | |
<td>node</td> | |
<td>true</td> | |
</tr> | |
</tbody> | |
</table> | |
); | |
export default Table; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment