dnd-character-sheets
Version:
Dungeons and Dragons 5th Edition character sheets created in ReactJS.
17 lines (16 loc) • 441 B
TypeScript
import React from 'react';
declare function SpellTable(props: {
onChange: (arg0: any, arg1: any) => void;
name: string;
slotsName?: string;
slotsUsedName?: string;
level: number;
value?: any;
slotsValue?: string;
slotsUsedValue?: number;
classes?: string;
rows: number;
showLabels?: boolean;
style?: React.CSSProperties | undefined;
}): JSX.Element;
export default SpellTable;