Skip to content
This repository was archived by the owner on Sep 21, 2022. It is now read-only.

Grammar fix #41

Open
wants to merge 1 commit into
base: master
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 01 - Core/03 - Stateless Functions.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export function Button(props : { width: number, onClick: function }) {
}

// When named exports are used, it may be valid to have multiple components
// in the same file. Destructuring can be used to provide convenience aliasing
// in the same file. Destructuring can be used to provide convenient aliasing
// and defaults to props.
export function Checkbox({ checked = true, width }) {
return (
Expand Down