UNPKG

create-new-react-component

Version:

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

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