Skip to content

Commit

Permalink
remove typeof
Browse files Browse the repository at this point in the history
  • Loading branch information
JKobrynski committed Aug 25, 2023
1 parent e1d0f9e commit d4cad05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/styles/ThemeStylesContext.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import styles from './styles';

const ThemeStylesContext = React.createContext<typeof styles>(styles);
const ThemeStylesContext = React.createContext(styles);

export default ThemeStylesContext;

0 comments on commit d4cad05

Please sign in to comment.