We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a31fdb commit 0d53b5dCopy full SHA for 0d53b5d
frontend/src/types.ts
@@ -12,8 +12,15 @@ import { MainState } from 'app/pages/MainPage/slice/types';
12
import { SharePageState } from 'app/pages/SharePage/slice/types';
13
import { StoryBoardState } from 'app/pages/StoryBoardPage/slice/types';
14
import { AppState } from 'app/slice/types';
15
+import { CSSProp } from 'styled-components';
16
import { ThemeState } from 'styles/theme/slice/types';
17
18
+declare module 'react' {
19
+ interface DOMAttributes<T> {
20
+ css?: CSSProp;
21
+ }
22
+}
23
+
24
export interface RootState {
25
theme?: ThemeState;
26
app?: AppState;
0 commit comments