Files
frontend-app-authoring/src/generic/ApplyWrapper.jsx
2023-08-08 09:49:53 -04:00

4 lines
133 B
JavaScript

const ApplyWrapper = ({ condition, wrapper, children }) => (condition ? wrapper(children) : children);
export default ApplyWrapper;