Skip to content

Instantly share code, notes, and snippets.

@mrcthms
Created May 18, 2017 19:43
Show Gist options
  • Save mrcthms/73c5d8e93fcbfc49ef6b7fb1c89dcf29 to your computer and use it in GitHub Desktop.
Save mrcthms/73c5d8e93fcbfc49ef6b7fb1c89dcf29 to your computer and use it in GitHub Desktop.
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