hm-react-components 1.0.0
Install from the command line:
Learn more about npm packages
$ npm install @navikt/hm-react-components@1.0.0
Install via package.json:
"@navikt/hm-react-components": "1.0.0"
About this version
This is a UI component library for Team Digihot
To use this UI library in your project, import the components you need from the library and use them in your React components.
import React from "react";
import { Endringsvarsel } from "@navikt/hm-react-components";
function App() {
return (
<div>
<Endringsvarsel
tittel="name"
tekst="tekst her"
dato="01.01.2023"
/>
</div>
);
}
export default App;