16 lines
281 B
JavaScript
16 lines
281 B
JavaScript
import styled from 'styled-components';
|
|
import { Box } from 'UIKit/grid';
|
|
import Form from './Form';
|
|
import Settings from './Settings';
|
|
|
|
const Grid = styled(Box)``;
|
|
|
|
export default function Calculation() {
|
|
return (
|
|
<Grid>
|
|
<Form />
|
|
<Settings />
|
|
</Grid>
|
|
);
|
|
}
|