style: auto format whole project
This commit is contained in:
@@ -6,15 +6,15 @@ export const StepExecutionsContext = React.createContext<IStep[]>([]);
|
||||
type StepExecutionsProviderProps = {
|
||||
children: React.ReactNode;
|
||||
value: IStep[];
|
||||
}
|
||||
};
|
||||
|
||||
export const StepExecutionsProvider = (props: StepExecutionsProviderProps): React.ReactElement => {
|
||||
export const StepExecutionsProvider = (
|
||||
props: StepExecutionsProviderProps
|
||||
): React.ReactElement => {
|
||||
const { children, value } = props;
|
||||
return (
|
||||
<StepExecutionsContext.Provider
|
||||
value={value}
|
||||
>
|
||||
<StepExecutionsContext.Provider value={value}>
|
||||
{children}
|
||||
</StepExecutionsContext.Provider>
|
||||
);
|
||||
};
|
||||
};
|
||||
|
Reference in New Issue
Block a user