golangci-lint/docs/src/components/ResponsiveContainer.js
dependabot[bot] d2526706f8
build(deps): bump emotion-theming from 10.0.27 to 11.0.0 in /docs . (#1623)
Co-authored-by: Fernandez Ludovic <ldez@users.noreply.github.com>
2021-05-05 15:12:24 +02:00

17 lines
278 B
JavaScript

/** @jsxRuntime classic */
/** @jsx jsx */
import { css, jsx } from "@emotion/react";
const ResponsiveContainer = ({ children }) => (
<div
css={css`
max-width: 100%;
overflow-x: auto;
`}
>
{children}
</div>
);
export default ResponsiveContainer;