UNPKG

create-new-react-component

Version:

an utility to create a new react component with a single command

11 lines (9 loc) 188 B
import React from 'react'; function TestComponent(props) { return ( <> {/* Add your component content here */} </> ); } export default TestComponent;