pub fn DefaultTableRowRenderer<Row>(
class: Signal<String>,
row: RwSignal<Row>,
index: usize,
selected: Signal<bool>,
on_select: EventHandler<MouseEvent>,
) -> impl IntoViewwhere
Row: TableRow + 'static,
Expand description
The default table row renderer. Uses the <tr>
element. Please note that this
is NOT a #[component]
.