Copy the shared folder to your Angular applications (src/app/shared). Import the Shared Module into your app.module.ts via import { SharedModule } from './shared/shared.module'; In your tsconfig.json ...
src/app/ ├── components/ │ └── dynamic-table/ # Reusable, config-driven table component │ ├── dynamic-table.component.ts │ ├── dynamic-table.component.html │ ├── dynamic-table.component.scss │ └── ...