@bitcobblers/wod-wiki-library
Version:
A specialized markdown-like workout syntax editor and runtime for defining workouts
10 lines (9 loc) • 318 B
TypeScript
import { default as React } from 'react';
import { WorkoutEntry } from './WorkbookStorage';
interface WorkbookPageProps {
workout: WorkoutEntry;
onTitleChange: (title: string) => void;
onContentChange: (content: string) => void;
}
export declare const WorkbookPage: React.FC<WorkbookPageProps>;
export {};