aboutsummaryrefslogtreecommitdiffstats
path: root/uidev/src/withTheme
diff options
context:
space:
mode:
authorLibravatar Markus Hatvan <markus_hatvan@aon.at>2021-07-30 10:54:54 +0200
committerLibravatar GitHub <noreply@github.com>2021-07-30 14:24:54 +0530
commitf4b4416ea52d564bc2dbe543a82084ed98843ccc (patch)
tree7ca6b23571c86458a6b799746c91a7191de02715 /uidev/src/withTheme
parent5.6.1-nightly.8 [skip ci] (diff)
downloadferdium-app-f4b4416ea52d564bc2dbe543a82084ed98843ccc.tar.gz
ferdium-app-f4b4416ea52d564bc2dbe543a82084ed98843ccc.tar.zst
ferdium-app-f4b4416ea52d564bc2dbe543a82084ed98843ccc.zip
chore: migrate from tslint to @typescript-eslint (#1706)
- update .eslintrc to work for .js and .ts - update devDependencies - lint properly both root /src and nested /packages - update webhint recommended setting for tsconfig.json to shrink output - Manage all eslint rules from the repo root - escape single quotes in scripts to please windows build Co-authored-by: Vijay A <avijayr@protonmail.com>
Diffstat (limited to 'uidev/src/withTheme')
-rw-r--r--uidev/src/withTheme/index.tsx16
1 files changed, 7 insertions, 9 deletions
diff --git a/uidev/src/withTheme/index.tsx b/uidev/src/withTheme/index.tsx
index 17a1074d3..4ef649367 100644
--- a/uidev/src/withTheme/index.tsx
+++ b/uidev/src/withTheme/index.tsx
@@ -37,14 +37,12 @@ const Container = injectSheet(styles)(({ name, classes, story }: { name: string,
37 </article> 37 </article>
38)); 38));
39 39
40export const WithTheme = ({ children }: {children: React.ReactChild}) => { 40export const WithTheme = ({ children }: { children: React.ReactChild }) => (
41 return ( 41 <>
42 <> 42 {themes.map((theme, key) => (
43 {themes.map((theme, key) => ( 43 <ThemeProvider key={key} theme={theme.variables}>
44 <ThemeProvider key={key} theme={theme.variables}> 44 <Container story={children} name={theme.name} />
45 <Container story={children} name={theme.name} /> 45 </ThemeProvider>
46 </ThemeProvider>
47 ))} 46 ))}
48 </> 47 </>
49 ); 48 );
50};