UNPKG

react-winplaza-98

Version:

React components with a Win98 a e s t h e c t i c

10 lines (9 loc) 305 B
import React from 'react'; export interface WindowProps { title: React.ReactElement; statusBar?: React.ReactNode; width?: string | number; children?: React.ReactNode; } declare const Window: ({ title, statusBar, width, children }: WindowProps) => React.JSX.Element; export default Window;