UNPKG
react-winplaza-98
Version:
latest (0.4.0)
0.4.0
0.3.4
0.3.3
0.3.2
0.3.1
0.2.2
0.2.1
0.2.0
0.1.1
0.1.0
React components with a Win98 a e s t h e c t i c
.
lisandro52/react-winplaza-98
react-winplaza-98
/
dist
/
esm
/
types
/
components
/
window
/
window.d.ts
10 lines
(9 loc)
•
305 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
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
;