mirror of
https://github.com/cloud-shuttle/leptos-shadcn-ui.git
synced 2026-01-04 12:02:56 +00:00
14 lines
341 B
Rust
14 lines
341 B
Rust
use yew::prelude::*;
|
|
|
|
use crate::default::components::ui::{button::Button, textarea::Textarea};
|
|
|
|
#[function_component]
|
|
pub fn TextareaWithButton() -> Html {
|
|
html! {
|
|
<div class="grid w-full gap-2">
|
|
<Textarea placeholder="Type your message here." />
|
|
<Button>{"Send message"}</Button>
|
|
</div>
|
|
}
|
|
}
|