Can you share components between multiple projects?

Is it possible to share components between multiple projects?

Yes it’s possible. There are two kind of components

  1. Normal components created in the studio.
    They can be shared using “imported projects” feature. If you import project A in project B, it will inherit all the components from project A into B except code components
  2. Code Components
    a. They can be shared into multiple projects by creating a library of Code Components.
    b. You can then register those components using single line of import
    c. import { registerAll } from "your-library-of-code-components
    d. registerAll()

For Normal components, “cross import projects” is documented here.
https://docs.plasmic.app/learn/publishing-importing/#importing-a-project

For creating private plasmic package of code components.
https://www.youtube.com/watch?v=RzpfG3c1wYY

Awesome. Thank you for the answers!