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