UNPKG

create-new-react-component

Version:

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

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