sdy

set global styles and variables

1 +export default {
2 + bgColor: "white",
3 +};
1 +import { createGlobalStyle } from "styled-components";
2 +import reset from "styled-reset";
3 +
4 +export default createGlobalStyle`
5 + ${reset}
6 + * {
7 + box-sizing: border-box;
8 + }
9 +`;