-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7119fb4
commit ea72dc4
Showing
8 changed files
with
1,769 additions
and
154 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,26 @@ | ||
import React from 'react' | ||
import ReactDOM from 'react-dom/client' | ||
import App from './App.tsx' | ||
import './index.css' | ||
import React from "react"; | ||
import ReactDOM from "react-dom/client"; | ||
import "@navikt/ds-css"; | ||
import { Box, Heading, HStack, Tag, VStack } from "@navikt/ds-react"; | ||
|
||
ReactDOM.createRoot(document.getElementById('root')!).render( | ||
ReactDOM.createRoot(document.getElementById("root")!).render( | ||
<React.StrictMode> | ||
<App /> | ||
<Box paddingBlock="8" paddingInline="8"> | ||
<VStack gap="4"> | ||
<Heading size="large"> | ||
Etterlatte sine visuelle bestemmelser for Gjenny! | ||
</Heading> | ||
|
||
<Heading size="medium">Tags</Heading> | ||
<VStack gap="2"> | ||
<div> | ||
<Tag variant="warning">Barnepejson</Tag> | ||
</div> | ||
<div> | ||
<Tag variant="warning">Omstillingstønad</Tag> | ||
</div> | ||
</VStack> | ||
</VStack> | ||
</Box> | ||
</React.StrictMode>, | ||
) | ||
); |
Oops, something went wrong.