dswhitely1/portfolio-master

View on GitHub
src/components/styled-components/GlobalStyle.js

Summary

Maintainability
A
0 mins
Test Coverage
import {createGlobalStyle} from "styled-components";
import {Reset} from "./Reset";
import {Global} from "./Global";

export const GlobalStyle = createGlobalStyle`
  ${Reset}
  ${Global}
`;