# Table ```rust demo view! {
"tag" "count" "date"
"div" "2" "2023-10-08"
"span" "2" "2023-10-08"
} ``` ### Table Props | Name | Type | Default | Description | | ------------- | --------------------- | -------------------- | ------------------------------------------------------------------------------------- | | class | `MaybeSignal` | `Default::default()` | Addtional classes for the table element. | | style | `MaybeSignal` | `Default::default()` | Table's style. | | single_row | `RwSignal` | `true` | Whether columns are not divided. If the prop is true, table cell has no border-right. | | single_column | `RwSignal` | `false` | Whether rows are not divided. If the prop is true, table cell has no border-bottom. | | children | `Children` | | Table's content. |