import { SwitchMiiInstructions } from "@/types"; import ColorPicker from "../color-picker"; import TypeSelector from "../type-selector"; import NumberInputs from "../number-inputs"; import { useState } from "react"; interface Props { instructions: React.RefObject; } export default function EyebrowsTab({ instructions }: Props) { const [type, setType] = useState(27); const [color, setColor] = useState(0); return (

Eyebrows

{ setType(i); instructions.current.eyebrows.type = i; }} />
{ setColor(i); instructions.current.eyebrows.color = i; }} />
); }