AlignScrollBar.jsx 365 B

1234567891011121314151617
  1. import React from 'react';
  2. import TableOnRow from '../Perf/Render/onRow';
  3. import RTLWrapper from '../../../configProvider/_story/RTLDirection/RTLWrapper';
  4. const App = function (props) {
  5. return (
  6. <RTLWrapper>
  7. <TableOnRow />
  8. </RTLWrapper>
  9. );
  10. };
  11. App.parameters = {
  12. chromatic: { disableSnapshot: true },
  13. }
  14. export default App;