Skip to content

Instantly share code, notes, and snippets.

@buglessir
Created March 5, 2022 13:31
Show Gist options
  • Save buglessir/d99840b253b9bc297e92a1b236fd4cad to your computer and use it in GitHub Desktop.
Save buglessir/d99840b253b9bc297e92a1b236fd4cad to your computer and use it in GitHub Desktop.
An example of GlobalStyles with styled-components
import { createGlobalStyle } from 'styled-components';
const GlobalStyles = createGlobalStyle`
body {
overflow-y: hidden;
}
`;
const PageWithoutScrollbar = () => {
return (
<>
<GlobalStyles />
<h1>Hello</h1>
</>
)
}
export default PageWithoutScrollbar;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment