mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
Simplify TodoMVC example (#2935)
* Remove id field from TodoItem * Remove derived traits from TodoItem
This commit is contained in:
parent
37d5f93c21
commit
2733497038
1 changed files with 0 additions and 3 deletions
|
@ -16,9 +16,7 @@ enum FilterState {
|
|||
Completed,
|
||||
}
|
||||
|
||||
#[derive(Debug, PartialEq, Eq)]
|
||||
struct TodoItem {
|
||||
id: u32,
|
||||
checked: bool,
|
||||
contents: String,
|
||||
}
|
||||
|
@ -120,7 +118,6 @@ fn TodoHeader(mut todos: Signal<HashMap<u32, TodoItem>>) -> Element {
|
|||
if evt.key() == Key::Enter && !draft.read().is_empty() {
|
||||
let id = todo_id();
|
||||
let todo = TodoItem {
|
||||
id,
|
||||
checked: false,
|
||||
contents: draft.to_string(),
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue