This repository has been archived on 2025-05-09. You can view files and clone it, but cannot push or open issues or pull requests.
2021-04-23 09:49:14 +03:00

12 lines
320 B
JavaScript

import { renderGroups } from 'client/Containers/Calculation/lib/renderSections';
import Background from 'client/Elements/Background';
import { controlsList } from './infoList';
const Results = props => (
<Background {...props}>
{renderGroups({ groups: controlsList })}
</Background>
);
export default Results;