Skip to content

Commit 9fdc110

Browse files
committed
chore(utils): 🎨 prettier fix
1 parent a7850ad commit 9fdc110

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/utils/createContext.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,7 @@ export interface CreateContextOptions {
1616
name?: string;
1717
}
1818

19-
export type CreateContextReturn<T> = [
20-
React.Provider<T>,
21-
() => T,
22-
React.Context<T>,
23-
];
19+
type CreateContextReturn<T> = [React.Provider<T>, () => T, React.Context<T>];
2420

2521
/**
2622
* Creates a named context, provider, and hook.

0 commit comments

Comments
 (0)