Files
commafeed/commafeed-client/src/components/DisablePullToRefresh.tsx
2024-06-13 23:28:45 +02:00

16 lines
340 B
TypeScript

import { Helmet } from "react-helmet"
export const DisablePullToRefresh = () => {
return (
<Helmet>
<style type="text/css">
{`
html, body {
overscroll-behavior: none;
}
`}
</style>
</Helmet>
)
}