mirror of
https://github.com/adoyle0/thaw.git
synced 2025-02-08 19:03:09 -05:00
22 lines
566 B
Rust
22 lines
566 B
Rust
|
pub use demo::App;
|
||
|
use leptos::prelude::*;
|
||
|
use leptos_meta::MetaTags;
|
||
|
|
||
|
pub fn shell(options: LeptosOptions) -> impl IntoView {
|
||
|
view! {
|
||
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8"/>
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||
|
<AutoReload options=options.clone() />
|
||
|
<HydrationScripts options/>
|
||
|
<MetaTags/>
|
||
|
</head>
|
||
|
<body>
|
||
|
<App/>
|
||
|
</body>
|
||
|
</html>
|
||
|
}
|
||
|
}
|