gitextract_tcaxl5i_/ ├── .github/ │ └── workflows/ │ └── rust.yml ├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── crates/ │ └── yew-app/ │ ├── .gitignore │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── Trunk.toml │ ├── index.html │ ├── src/ │ │ ├── app/ │ │ │ ├── about.rs │ │ │ ├── home.rs │ │ │ └── mod.rs │ │ ├── components/ │ │ │ ├── mod.rs │ │ │ ├── nav.rs │ │ │ └── ui/ │ │ │ ├── button.rs │ │ │ └── mod.rs │ │ ├── lib.rs │ │ └── main.rs │ ├── tailwind.config.js │ ├── tailwind.css │ └── tests/ │ └── web.rs └── packages/ └── create-yew-app/ ├── README.md ├── createYewApp.js ├── index.js └── package.json