npm i @bd-dm/ui
npx install-peerdeps @bd-dm/ui
import "@bd-dm/ui/dist/index.css"
import "@bd-dm/ui/dist/globals.css"
import "@bd-dm/ui/dist/index.css";
import { UI, Layout, useDeviceTheme } from "@bd-dm/ui";
const App = () => {
const theme = useDeviceTheme();
return (
<UI theme={theme}>
<Layout>
[Your components here]
</Layout>
</UI>
)
}