pub fn InputCellRenderer(
/// The class attribute for the cell element. Generated by the classes provider.
class: String,
/// The value to display.
[prop(into)]
value: MaybeSignal<String>,
/// Event handler called when the cell is changed. In this default renderer this will never happen.
on_change: F,
/// The index of the column. Starts at 0.
index: usize,
[component]
[allow(unused_variables)]
pub fn InputCellRenderer(
/// The class attribute for the cell element. Generated by the classes provider.
class: String,
/// The value to display.
[prop(into)]
) -> impl IntoView where F: Fn(String) + 'static, { view! {