UNPKG

@twa-dev/mark42

Version:

Mark42 is a simple lightweight tree-shakable UI library for [Telegram Web Apps (TWA)](https://core.telegram.org/bots/webapps).

8 lines (7 loc) 178 B
import { FC, ReactNode } from "react"; interface PageProps { mode?: "primary" | "secondary"; children?: ReactNode; } export declare const Page: FC<PageProps>; export {};