+
+
+ {move || {
+ match input_mode.get() {
+ InputMode::Text => {
+ view! {
+
+
+
+ {move || {
+ let len = text_content.get().len();
+ format!("{} characters", len)
+ }}
+
+
+ }.into_any()
+ }
+ InputMode::File => {
+ view! {
+
+ }.into_any()
+ }
+ }
+ }}
+