Ver código fonte

Fix fullstack hackernews example instructions (#3597)

Evan Almloff 5 meses atrás
pai
commit
e199e86dad
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      example-projects/fullstack-hackernews/src/main.rs

+ 1 - 1
example-projects/fullstack-hackernews/src/main.rs

@@ -172,7 +172,7 @@ fn Preview(story: ReadOnlySignal<PreviewState>) -> Element {
         active_story: Some(id),
     } = story()
     else {
-        return rsx! {"Hover over a story to preview it here"};
+        return rsx! {"Click on a story to preview it here"};
     };
 
     let story = use_server_future(use_reactive!(|id| get_story(id)))?;