Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update 01-00-WhatIsReact.md #4

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/01-00-WhatIsReact.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ More specifically, React provides a declarative library that keeps the DOM in sy

A declarative language that most developers are familiar with is SQL. SQL is declarative because you declare what data you want and the database figures out how to efficiently return you that data. React is SQL for HTML or more specifically the Document Object Model (DOM). You declare what HTML and data you want and React figures out how to efficently (with the least amount of changes to the DOM) render your data to HTML.

The architecture is component-based and allows you that allow you to create new custom, reusable, encapsulated HTML tags to use in web pages and web apps.
The architecture is component-based and allows you to create new custom, reusable, encapsulated HTML tags to use in web pages and web apps.

## Why is it useful?

Expand Down