mycrossword
Version:
React crossword component
12 lines (11 loc) • 354 B
TypeScript
import * as React from 'react';
export interface IntroProps {
continueLabel?: string;
countdown?: {
seconds: number;
label?: string;
};
node: React.ReactNode;
onContinue: () => void;
}
export default function Intro({ continueLabel, countdown, node, onContinue, }: IntroProps): import("react/jsx-runtime").JSX.Element;