cleanup some forms; break out major config styles into their own files

This commit is contained in:
gingervitis
2021-02-04 08:04:00 -08:00
parent e8c24fd2d4
commit 6e43870d41
18 changed files with 374 additions and 530 deletions

View File

@@ -11,7 +11,7 @@ interface DropdownProps {
}
export default function SocialDropdown({ iconList, selectedOption, onSelected }: DropdownProps) {
const handleSelected = value => {
const handleSelected = (value: string) => {
if (onSelected) {
onSelected(value);
}