소스 검색

remove things that werent meant to be in last commit

andrey 1 년 전
부모
커밋
c9f04ac3d0

+ 0 - 22
examples/seven_guis/cells.rs

@@ -1,22 +0,0 @@
-//! The simplest example of a Dioxus app.
-//!
-//! In this example we:
-//! - import a number of important items from the prelude (launch, Element, rsx, div, etc.)
-//! - define a main function that calls the launch function with our app function
-//! - define an app function that returns a div element with the text "Hello, world!"
-//!
-//! The `launch` function is the entry point for all Dioxus apps. It takes a function that returns an Element. This function
-//! calls "launch" on the currently-configured renderer you have. So if the `web` feature is enabled, it will launch a web
-//! app, and if the `desktop` feature is enabled, it will launch a desktop app.
-
-use dioxus::prelude::*;
-
-fn main() {
-    launch(app);
-}
-
-fn app() -> Element {
-    rsx! {
-        div { "Hello, world!" }
-    }
-}

+ 0 - 22
examples/seven_guis/circle-drawer.rs

@@ -1,22 +0,0 @@
-//! The simplest example of a Dioxus app.
-//!
-//! In this example we:
-//! - import a number of important items from the prelude (launch, Element, rsx, div, etc.)
-//! - define a main function that calls the launch function with our app function
-//! - define an app function that returns a div element with the text "Hello, world!"
-//!
-//! The `launch` function is the entry point for all Dioxus apps. It takes a function that returns an Element. This function
-//! calls "launch" on the currently-configured renderer you have. So if the `web` feature is enabled, it will launch a web
-//! app, and if the `desktop` feature is enabled, it will launch a desktop app.
-
-use dioxus::prelude::*;
-
-fn main() {
-    launch(app);
-}
-
-fn app() -> Element {
-    rsx! {
-        div { "Hello, world!" }
-    }
-}

+ 0 - 25
examples/seven_guis/counter.rs

@@ -1,25 +0,0 @@
-//! The simplest example of a Dioxus app.
-//!
-//! In this example we:
-//! - import a number of important items from the prelude (launch, Element, rsx, div, etc.)
-//! - define a main function that calls the launch function with our app function
-//! - define an app function that returns a div element with the text "Hello, world!"
-//!
-//! The `launch` function is the entry point for all Dioxus apps. It takes a function that returns an Element. This function
-//! calls "launch" on the currently-configured renderer you have. So if the `web` feature is enabled, it will launch a web
-//! app, and if the `desktop` feature is enabled, it will launch a desktop app.
-
-use dioxus::prelude::*;
-
-fn main() {
-    launch(app);
-}
-
-fn app() -> Element {
-    let counter = use_signal(|| 0usize);
-
-    rsx! {
-        button { onclick: move || counter += 1, "Increment Counter" }
-        p { "{counter}" }
-    }
-}

+ 0 - 22
examples/seven_guis/crud.rs

@@ -1,22 +0,0 @@
-//! The simplest example of a Dioxus app.
-//!
-//! In this example we:
-//! - import a number of important items from the prelude (launch, Element, rsx, div, etc.)
-//! - define a main function that calls the launch function with our app function
-//! - define an app function that returns a div element with the text "Hello, world!"
-//!
-//! The `launch` function is the entry point for all Dioxus apps. It takes a function that returns an Element. This function
-//! calls "launch" on the currently-configured renderer you have. So if the `web` feature is enabled, it will launch a web
-//! app, and if the `desktop` feature is enabled, it will launch a desktop app.
-
-use dioxus::prelude::*;
-
-fn main() {
-    launch(app);
-}
-
-fn app() -> Element {
-    rsx! {
-        div { "Hello, world!" }
-    }
-}

+ 0 - 22
examples/seven_guis/flight-booker.rs

@@ -1,22 +0,0 @@
-//! The simplest example of a Dioxus app.
-//!
-//! In this example we:
-//! - import a number of important items from the prelude (launch, Element, rsx, div, etc.)
-//! - define a main function that calls the launch function with our app function
-//! - define an app function that returns a div element with the text "Hello, world!"
-//!
-//! The `launch` function is the entry point for all Dioxus apps. It takes a function that returns an Element. This function
-//! calls "launch" on the currently-configured renderer you have. So if the `web` feature is enabled, it will launch a web
-//! app, and if the `desktop` feature is enabled, it will launch a desktop app.
-
-use dioxus::prelude::*;
-
-fn main() {
-    launch(app);
-}
-
-fn app() -> Element {
-    rsx! {
-        div { "Hello, world!" }
-    }
-}

+ 0 - 22
examples/seven_guis/temperature-converter.rs

@@ -1,22 +0,0 @@
-//! The simplest example of a Dioxus app.
-//!
-//! In this example we:
-//! - import a number of important items from the prelude (launch, Element, rsx, div, etc.)
-//! - define a main function that calls the launch function with our app function
-//! - define an app function that returns a div element with the text "Hello, world!"
-//!
-//! The `launch` function is the entry point for all Dioxus apps. It takes a function that returns an Element. This function
-//! calls "launch" on the currently-configured renderer you have. So if the `web` feature is enabled, it will launch a web
-//! app, and if the `desktop` feature is enabled, it will launch a desktop app.
-
-use dioxus::prelude::*;
-
-fn main() {
-    launch(app);
-}
-
-fn app() -> Element {
-    rsx! {
-        div { "Hello, world!" }
-    }
-}

+ 0 - 22
examples/seven_guis/timer.rs

@@ -1,22 +0,0 @@
-//! The simplest example of a Dioxus app.
-//!
-//! In this example we:
-//! - import a number of important items from the prelude (launch, Element, rsx, div, etc.)
-//! - define a main function that calls the launch function with our app function
-//! - define an app function that returns a div element with the text "Hello, world!"
-//!
-//! The `launch` function is the entry point for all Dioxus apps. It takes a function that returns an Element. This function
-//! calls "launch" on the currently-configured renderer you have. So if the `web` feature is enabled, it will launch a web
-//! app, and if the `desktop` feature is enabled, it will launch a desktop app.
-
-use dioxus::prelude::*;
-
-fn main() {
-    launch(app);
-}
-
-fn app() -> Element {
-    rsx! {
-        div { "Hello, world!" }
-    }
-}