From 1902e47412427718fdf96d25b2d585d574ffaf78 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Mon, 9 May 2022 12:20:50 -0500 Subject: [PATCH] Checkbox: add jsdoc comment --- app/soapbox/components/ui/checkbox/checkbox.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/app/soapbox/components/ui/checkbox/checkbox.tsx b/app/soapbox/components/ui/checkbox/checkbox.tsx index 68bb49645..dc7a4e370 100644 --- a/app/soapbox/components/ui/checkbox/checkbox.tsx +++ b/app/soapbox/components/ui/checkbox/checkbox.tsx @@ -2,6 +2,7 @@ import React from 'react'; interface ICheckbox extends Pick, 'disabled' | 'id' | 'name' | 'onChange' | 'checked' | 'required'> { } +/** A pretty checkbox input. */ const Checkbox = React.forwardRef((props, ref) => { return (