UNPKG

hotelier-lib

Version:

A skeleton to create your own React component library using Rollup, TypeScript, Sass and Storybook

12 lines (11 loc) 282 B
import React, { ReactNode } from 'react'; import './styles.css'; interface Props { onFinish: any; formName: string; title: string; children?: ReactNode; handleCancel?: any; } declare const App: (props: Props) => React.JSX.Element; export default App;