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
2 changes: 1 addition & 1 deletion exercises/04.slots/01.problem.context/slots.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ export function Label(props: React.ComponentProps<'label'>) {
}

export function Input(props: React.ComponentProps<'input'>) {
// 🐨 get the props from useSlotProps for a slot called "label" and apply those to the input
// 🐨 get the props from useSlotProps for a slot called "input" and apply those to the input
return <input {...props} />
}