Renders a table.
This component is a pre-styled wrapper around Flop.Phoenix.table/1. A subset of attributes are available and others have been renamed to follow our terminology.
<.table id="users" rows={@users}> <:col :let={user} label="id"><%= user.id %></:col> <:col :let={user} label="username"><%= user.username %></:col> </.table>
#
To make a row sortable, include the field attribute on the col slot:
<.table id="users" rows={@users}> <:col :let={user} field={:name}> <%= user.name %> </:col> </.table>
You must also include a handle_params callback in your LiveView.