Skip to content

Instantly share code, notes, and snippets.

@rarmatei
Last active May 12, 2018 12:07
Show Gist options
  • Save rarmatei/d0a650af63a278d8ea849b55dd645d95 to your computer and use it in GitHub Desktop.
Save rarmatei/d0a650af63a278d8ea849b55dd645d95 to your computer and use it in GitHub Desktop.
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