1. yarn install
  2. yarn start
  3. Output HTML code:
<table class="MuiTable-root" style="width: 200px;">
  <tbody class="MuiTableBody-root">
    <tr class="MuiTableRow-root">
      <td class="MuiTableCell-root MuiTableCell-body MuiTableCell-paddingNone">
        Lorem ipsum
      </td>
    </tr>
  </tbody>
</table>
  1. yarn buildAndRun
  2. Output HTML code:
<table class="MuiTable-root" style="width: 200px;">
  <tbody class="MuiTableBody-root">
    <tr class="MuiTableRow-root">
      <td class="MuiTableCell-root MuiTableCell-body">Lorem ipsum</td>
    </tr>
  </tbody>
</table>