ds-react 7.0.0
Install from the command line:
Learn more about npm packages
$ npm install @navikt/ds-react@7.0.0
Install via package.json:
"@navikt/ds-react": "7.0.0"
About this version
React-components for NAVs designsystem.
- Uses styling defined in
@navikt/ds-css
- All components implemented with React.forwardRef!
- Most components extend native html-elements.
yarn add @navikt/ds-react
npm install @navikt/ds-react
Remember to also import @navikt/ds-css
for styling!
import { Button } from "@navikt/ds-react";
function App() {
return <Button variant="secondary">Click me!</Button>;
}