mirror of
https://github.com/trafficlunar/tomodachi-share.git
synced 2026-03-28 19:23:15 +00:00
18 lines
453 B
TypeScript
18 lines
453 B
TypeScript
import { SwitchMiiInstructions } from "@/types";
|
|
import NumberInputs from "../number-inputs";
|
|
|
|
interface Props {
|
|
instructions: React.RefObject<SwitchMiiInstructions>;
|
|
}
|
|
|
|
export default function NoseTab({ instructions }: Props) {
|
|
return (
|
|
<>
|
|
<h1 className="absolute font-bold text-xl">Nose</h1>
|
|
|
|
<div className="size-full flex flex-col justify-center items-center">
|
|
<NumberInputs target={instructions.current.nose} />
|
|
</div>
|
|
</>
|
|
);
|
|
}
|