UNPKG

projecthor

Version:

Save, manage, and run project setup commands automatically from the CLI.

8 lines (7 loc) 189 B
import React from 'react'; interface AppProps { shell?: string; projectName?: string; } export default function App({ projectName, shell }: AppProps): React.JSX.Element; export {};