Fix div prop name in css.mdx (#3185)

* Fix div prop name in css.mdx
* Fix div prop name in yew/website/docs/concepts/basic-web-technologies/css.mdx

`styles` is a not existing property in the `div` component. Changed it to `style`
This commit is contained in:
Pavlo Myroniuk 2023-03-28 13:41:14 +03:00 committed by GitHub
parent 8c9d942dbf
commit c5324aff62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -94,7 +94,7 @@ but you can use it like any other HTML attribute:
use yew::{classes, html};
html! {
<div styles="color: red;"></div>
<div style="color: red;"></div>
};
```

View File

@ -94,7 +94,7 @@ but you can use it like any other html attribute:
use yew::{classes, html};
html! {
<div styles="color: red;"></div>
<div style="color: red;"></div>
};
```