From 9e5930af5fdde58f5f789f2707151564aa8869d6 Mon Sep 17 00:00:00 2001 From: Ryan McGrath Date: Sat, 25 May 2019 00:03:37 -0700 Subject: [PATCH] Small note re: supported components --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 11a047a..bfb95cc 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Support for more platforms is desired - for example, I think an [`OrbTk`](https: ## What Currently Works...? At the moment, the following is implemented: -- A basic `cocoa` API, which implements the `Application` and `Window` lifecycles. `View`s are supported as well. +- A basic `cocoa` API, which implements the `Application` and `Window` lifecycles. ``, ``, and `` are supported as well. - A basic `reconciliation` module, which handles computing changes to the widget tree and applying them as necessary. It currently follows a design similar to React pre-16; I'm open to changing this if someone wants to collaborate. - A CSS parser, based on the work done over in [servo/servo](https://github.com/servo/servo). It doesn't support cascading, and follows an API closer to that of React Native's. This is intentional. - An RSX system, based on work done in [bodil/typed-html](https://github.com/bodil/typed-html) by Bodil Stokke. This was actually the project that made me circle back to the entire thing, too.