Skip to content

Commit

Permalink
Merge branch 'master' into feat/entrypoint
Browse files Browse the repository at this point in the history
Signed-off-by: Bogdan Bulakh <[email protected]>
  • Loading branch information
bbulakh authored May 7, 2024
2 parents 14a95bd + 071394b commit ec0cc3c
Show file tree
Hide file tree
Showing 34 changed files with 688 additions and 5 deletions.
226 changes: 226 additions & 0 deletions .pnp.cjs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed .yarn/cache/fsevents-patch-6b67494872-10.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"@types/eslint": "^8",
"@types/jest": "29.5.12",
"@types/node": "20.12.8",
"@types/react": "^18",
"eslint": "8.57.0",
"husky": "9.0.11",
"prettier": "3.1.1",
Expand Down
1 change: 1 addition & 0 deletions ui/theme/src/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './theme.provider'
9 changes: 9 additions & 0 deletions ui/theme/src/theme.provider.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import * as theme from './theme'

import { ThemeProvider as EmotionThemeProvider } from '@emotion/react'

import React from 'react'

export const ThemeProvider = ({ children }) => (
<EmotionThemeProvider theme={theme}>{children}</EmotionThemeProvider>
)
Loading

0 comments on commit ec0cc3c

Please sign in to comment.