as it stands please don't use this crate for well basically anything. I'm using it for http://rustjobs.io atm. The plan is to improve the create overtime, and make it more general to handle more use cases.
WARNING this crate is badly documented and, becuase of that it makes it hard to use
TODOS
```rust use yewformderive::YewForm;
// TODO: idk if this is a minial example // this create input elements that can be used in a from // to use these elements use the context provided by this // macro
pub struct AdvertiseForm { pub company: String, pub position: String, pub salaryrange: String, pub linkto_apply: String, // better suited as a URL type #[ele = "textarea"] pub description: String, }
// later on in another file or the same on
...
pub fn consumer() -> Html {
let form = use_context::
let input_style = "text-xl sm:text-5xl bg-transparent border-black border p-2.5 rounded-lg";
html! {
<form>
<Company class={input_style} />
<Position class={input_style} />
<Salary_range class={input_style} />
<Description class={input_style}/>
<Link_to_apply class={input_style}/>
<button type="submit">
{"Checkout ->"}
</button>
</form>
}
}
pub fn advertise_page() -> Html {
html! {