vgeek-ui
v0.1.1
Published
Reusable and customizable UI components for React, styled with Material-UI.
Readme
Vgeek UI
Reusable and customizable UI components for React, styled with Material-UI.
Installation
npm install vgeek-ui
# or
yarn add vgeek-ui⚠️ Peer Dependencies
Dieses Paket verwendet Material UI.
Bitte stelle sicher, dass folgende Pakete in deinem Projekt installiert sind:
npm install @mui/material @mui/icons-material @emotion/react @emotion/styledExample Demo Cookie
// App.tsx oder z. B. layout.tsx
import { CookieConsent } from 'vgeek-ui';
function App() {
return (
<div>
<h1>Hello World!</h1>
<CookieConsent/>
</div>
);
}
export default App;