Skip to content

Commit

Permalink
chore: add correct case file
Browse files Browse the repository at this point in the history
  • Loading branch information
d-rita committed Dec 19, 2024
1 parent 10d1857 commit fbf3990
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/components/AppWrapper.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { CssReset, CssVariables } from '@dhis2/ui'
import React from 'react'

function AppWrapper({ children }: { children: React.ReactNode }) {
return (
<>
<CssReset />
<CssVariables theme spacers colors />
{children}
</>
)
}

export default AppWrapper

0 comments on commit fbf3990

Please sign in to comment.