Report is mostly done now, fine tuning left

This commit is contained in:
Marko Korhonen 2020-05-08 09:35:47 +03:00
parent fb5aa5ee5a
commit 06b71b8688
No known key found for this signature in database
GPG key ID: 911B85FBC6003FE5
21 changed files with 533 additions and 225 deletions

12
tex/code/compiler-help Normal file
View file

@ -0,0 +1,12 @@
error[E0412]: cannot find type `Json` in this scope
--> src/component/login.rs:6:16
|
6 | fn create() -> Json {}
| ^^^^ not found in this scope
|
help: possible candidates are found in other modules, you can import them into scope
|
1 | use yew::format::Json;
|
1 | use yew::format::json::Json;
|