Implementation #144203
Unanswered
Thewsthews
asked this question in
Programming Help
Implementation
#144203
Replies: 1 comment
-
I think that your code is missing a closing brace, }, for the impl block. You can try adding it after the create function: impl Component for MyComponent {
} // Add this closing brace This should fix your problem! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Body
After code compilation, im getting this error:
impl Component for MyComponent { | - while parsing this item list starting here ...
Below is the code sample:
`impl Component for MyComponent {
type Message = Msg;
type Properties = ();
Any way to go about it?
Guidelines
Beta Was this translation helpful? Give feedback.
All reactions