dnd-character-sheets
Version:
Dungeons and Dragons 5th Edition character sheets created in ReactJS.
12 lines (11 loc) • 351 B
TypeScript
import React from 'react';
declare function Skill(props: {
classes?: string;
checked?: boolean;
onChange: (arg0: string, arg1: string | boolean) => void;
name: string;
value: string | number | readonly string[] | undefined;
label?: React.ReactNode;
hint?: React.ReactNode;
}): JSX.Element;
export default Skill;