chore: update examples and doctests

This commit is contained in:
Greg Johnston 2024-08-02 09:07:23 -04:00
parent 71ca02a432
commit 605e4b1eec
9 changed files with 9 additions and 9 deletions

View File

@ -23,7 +23,7 @@ use leptos::{
/// following the `{..}` operator.
///
/// ```
/// use leptos::*;
/// use leptos::prelude::*;
/// use leptos_meta::*;
///
/// #[component]

View File

@ -23,7 +23,7 @@ use leptos::{
/// following the `{..}` operator.
///
/// ```
/// use leptos::*;
/// use leptos::prelude::*;
/// use leptos_meta::*;
///
/// #[component]

View File

@ -11,7 +11,7 @@
//! HTML that should be injected into the `<head>` of the HTML document being rendered.
//!
//! ```
//! use leptos::*;
//! use leptos::prelude::*;
//! use leptos_meta::*;
//!
//! #[component]

View File

@ -8,7 +8,7 @@ use leptos::{
/// head, accepting any of the valid attributes for that tag.
///
/// ```
/// use leptos::*;
/// use leptos::prelude::*;
/// use leptos_meta::*;
///
/// #[component]

View File

@ -11,7 +11,7 @@ use leptos::{
/// head to set metadata
///
/// ```
/// use leptos::*;
/// use leptos::prelude::*;
/// use leptos_meta::*;
///
/// #[component]

View File

@ -7,7 +7,7 @@ use leptos::{
/// head, accepting any of the valid attributes for that tag.
///
/// ```
/// use leptos::*;
/// use leptos::prelude::*;
/// use leptos_meta::*;
///
/// #[component]

View File

@ -7,7 +7,7 @@ use leptos::{
/// head, accepting any of the valid attributes for that tag.
///
/// ```
/// use leptos::*;
/// use leptos::prelude::*;
/// use leptos_meta::*;
///
/// #[component]

View File

@ -8,7 +8,7 @@ use leptos::{
/// head that loads a stylesheet from the URL given by the `href` property.
///
/// ```
/// use leptos::*;
/// use leptos::prelude::*;
/// use leptos_meta::*;
///
/// #[component]

View File

@ -73,7 +73,7 @@ where
/// `<Title formatter=.../>` that will wrap each of the text values of `<Title/>` components created lower in the tree.
///
/// ```
/// use leptos::*;
/// use leptos::prelude::*;
/// use leptos_meta::*;
///
/// #[component]