diff --git a/src/slides/02-what.md b/src/slides/02-what.md index f290a2e..af86264 100644 --- a/src/slides/02-what.md +++ b/src/slides/02-what.md @@ -4,6 +4,6 @@ type: statement ## Huh? -* When we create a custom component, often we have to tell the browser how it should treat it +* When we create a custom component, we have to tell the browser how it should treat it * But often browsers already give us the tools to do that natively * Reaching for CSS and HTML first can make our components faster, more reusable, and more accessible diff --git a/src/slides/03-example-1.md b/src/slides/03-example-1.md index bf671bf..5958f04 100644 --- a/src/slides/03-example-1.md +++ b/src/slides/03-example-1.md @@ -154,6 +154,7 @@ export default class Toggle extends Component { * Have to import all of this everywhere we use it * No meaningful labels possible! * No keyboard navigation +* No Javascript? No component diff --git a/src/slides/04-example-1.md b/src/slides/04-example-1.md index ae9b6d4..8afb8cd 100644 --- a/src/slides/04-example-1.md +++ b/src/slides/04-example-1.md @@ -4,7 +4,7 @@ ```html