refactor(web): remove typescript
This commit is contained in:
10
packages/web/src/contexts/StepExecutions.jsx
Normal file
10
packages/web/src/contexts/StepExecutions.jsx
Normal file
@@ -0,0 +1,10 @@
|
||||
import * as React from 'react';
|
||||
export const StepExecutionsContext = React.createContext([]);
|
||||
export const StepExecutionsProvider = (props) => {
|
||||
const { children, value } = props;
|
||||
return (
|
||||
<StepExecutionsContext.Provider value={value}>
|
||||
{children}
|
||||
</StepExecutionsContext.Provider>
|
||||
);
|
||||
};
|
Reference in New Issue
Block a user