- Edit
/src/index.jsfile - Run
npm run build
- Go into root folder of package and run
npm link - Go to your project and run
npm link <package_name> - Implement in your code
import Hello from "npm-package-react-template";
export default function Test() {
return (
<>
<Hello />
</>
);
}