When I want to use the following Button
component I need to add the stylesheet of that package in the app.
pacjages/
ui/
src/
button/
Button.tsx
apps/
todo/
src/
app/
page.tsx
import "ui/styles.css";
Is it possible to import the component without importing the stylesheet?!
Why don’t you import it once in the layout?