Fix README appearance
This commit is contained in:
parent
2035318460
commit
f4634d7d23
1 changed files with 2 additions and 2 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
[](https://alchemy.rs)
|
[](https://alchemy.rs)
|
||||||
|
|
||||||
A Rust GUI Framework
|
A Rust GUI Framework
|
||||||
==========================================================
|
==========================================================
|
||||||
|
|
@ -82,7 +82,7 @@ fn main() {
|
||||||
window: Window::new("Le Appy App", (0., 0., 600., 600.), WindowState {})
|
window: Window::new("Le Appy App", (0., 0., 600., 600.), WindowState {})
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
``
|
```
|
||||||
|
|
||||||
## Does it support custom Components?
|
## Does it support custom Components?
|
||||||
Alchemy implements the React component lifecycle. It does not (currently) implement Hooks, and may or may not implement them in the future. The class-based lifecycle maps fairly well to Rust idioms already, as you really never wanted to subclass in React anyway.
|
Alchemy implements the React component lifecycle. It does not (currently) implement Hooks, and may or may not implement them in the future. The class-based lifecycle maps fairly well to Rust idioms already, as you really never wanted to subclass in React anyway.
|
||||||
|
|
|
||||||
Reference in a new issue