I have two git repos;
- one is a component library, containing multiple components which are all individually exported to bit.dev
- two is a next/react app that uses the components from the library
My folders are roughly;
component-library
|- .bitmap
|- /src
|- /button
|- /button.js
|- /header
|- /header.js
next-react-project
|- /src
|- /pages
|- /home.js
I want to be able to see local changes to my components in my react app without having to first tag and export them to bit. Before using bit.dev, i'd do this by running something like npm link ../component-library
.
How can I achieve this with bit.dev?