mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-06 03:34:40 +00:00
6 lines
115 B
TypeScript
6 lines
115 B
TypeScript
import "./Switch.css";
|
|
|
|
export interface SwitchProps {
|
|
onChange: (isOn: boolean) => void;
|
|
state: boolean;
|
|
} |