export function Checkbox()

in 01 - Core/03 - Stateless Functions.js [18:25]


export function Checkbox({ checked = true, width }) {
  return (
    <div>
      Fancy checkbox
      <input type="checkbox" checked={checked} style={{ width }} />
    </div>
  );
}