Skip to content

fix: export new common components

Christina Jenks requested to merge export-new-components into main

Previous efforts adding new components to components/common forgot to add those as re-exports.

Not the worst thing in the world; means my imports would look like

import { Stepper } from "ce-ui-common/dist/components/common/Stepper";

instead of how they're supposed to be:

import { Stepper } from "ce-ui-common";

Merge request reports