Files
automatisch/packages/web/src/contexts/StepExecutions.jsx
2024-02-29 09:38:32 +00:00

11 lines
307 B
JavaScript

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>
);
};