Last active
May 12, 2018 12:07
-
-
Save rarmatei/d0a650af63a278d8ea849b55dd645d95 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"; | |
function Results() { | |
return ( | |
<table> | |
<tr> | |
<th> Title </th> | |
<th> First name </th> | |
<th> Surname </th> | |
<th> Email </th> | |
<th> Room id </th> | |
</tr> | |
<tr> | |
<td> Mr </td> | |
<td> Person1 </td> | |
<td> Else </td> | |
<td> [email protected] </td> | |
<td> 1 </td> | |
</tr> | |
<tr> | |
<td> Mrs </td> | |
<td> Person2 </td> | |
<td> Else </td> | |
<td> [email protected] </td> | |
<td> 2 </td> | |
</tr> | |
</table> | |
); | |
} | |
export default Results; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment