mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
16 lines
340 B
TypeScript
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>
|
|
)
|
|
}
|