Does anyone know which ESLint configuration rule is causing my jsx
inside parenthesis to be 4 more spaces on the left then I expect?
import React from 'react';
import './styles.scss';
const TableWrapper = ({
children,
}) => (
<div className="table-wrapper">
{children}
</div>
);
export default TableWrapper;
Using eslint:recommended
, plugin:react/recommended
, and eslint-config-prettier