usecrate::*;/// Props for the `form_input` component.
////// Defines the strongly-typed interface for the labeled input field.
#[derive(Data, Debug, Default)]pubstructFormInputProps{/// The label text displayed above the input.
publabel: String,
/// The placeholder text shown when the input is empty.
pubplaceholder: String,
/// The current input value.
pubvalue: String,
}