From f4634d7d238f333967a52ee37cea136bb94dc0fc Mon Sep 17 00:00:00 2001 From: Ryan McGrath Date: Thu, 23 May 2019 22:13:36 -0700 Subject: [PATCH] Fix README appearance --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 99eddf5..99db76f 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Alchemy](https://github.com/ryanmcgrath/alchemy/blob/master/assets/alchemy_logo_250x.png?raw=true)](https://alchemy.rs) +[![Alchemy](https://github.com/ryanmcgrath/alchemy/blob/trunk/assets/alchemy_logo_250x.png?raw=true)](https://alchemy.rs) A Rust GUI Framework ========================================================== @@ -82,7 +82,7 @@ fn main() { window: Window::new("Le Appy App", (0., 0., 600., 600.), WindowState {}) }); } -`` +``` ## 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.