Skip to content
Merged
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
7 changes: 7 additions & 0 deletions src/routes/concepts/components/basics.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,13 @@ function App() {
}
```

:::info[Note]

Component names must start with a capital letter to distinguish them from regular HTML elements.
Otherwise, they won't be recognized as components.

:::

## Component trees

A web page is displayed by rendering a component tree, which is a hierarchical structure of components.
Expand Down
Loading