Update docs

This commit is contained in:
Aaron Smith 2023-08-22 13:05:48 +01:00
parent 6700e1b1f6
commit 15cf7f98ab
2 changed files with 6 additions and 4 deletions

View file

@ -10,10 +10,10 @@
Vide is a reactive UI library. Vide is a reactive UI library.
- Uses Luau typechecking - Fully Luau typecheckable
- Declarative and concise syntax. - Declarative and concise syntax.
- Minimal imports. - Minimal imports.
- Reactive state driven. - Reactively driven.
## Getting started ## Getting started

View file

@ -16,8 +16,10 @@ worrying about manually updating UI instances.
Some of the main focuses behind Vide's design choices: Some of the main focuses behind Vide's design choices:
- Concise syntax to reduce verbosity as much as possible. - Concise syntax to reduce verbosity as much as possible.
- Reducing the amount of imports needed for usage by using Luau's syntax and - Reducing the amount of imports needed for usage by leveraging Luau's syntax
semantics. and semantics.
- Being completely typecheckable. - Being completely typecheckable.
- Flexibility, particularly with integrating other libraries and allowing users - Flexibility, particularly with integrating other libraries and allowing users
to use their own patterns. to use their own patterns.
- A powerful reactive system that does not interfere with the lifetime of
instances.