diff --git a/content/docs/components-and-props.md b/content/docs/components-and-props.md index 038145ad3..7c55df695 100644 --- a/content/docs/components-and-props.md +++ b/content/docs/components-and-props.md @@ -85,9 +85,7 @@ Let's recap what happens in this example: 3. Our `Welcome` component returns a `

Hello, Sara

` element as the result. 4. React DOM efficiently updates the DOM to match `

Hello, Sara

`. ->**Caveat:** -> ->Always start component names with a capital letter. +>**Note:** Always start component names with a capital letter. > >React treats components starting with lowercase letters as DOM tags. For example, `
` represents an HTML div tag, but `` represents a component and requires `Welcome` to be in scope. >