Skip to content

Commit 2979048

Browse files
authored
Merge branch 'master' into use-schema
2 parents 16afe8f + 1637f99 commit 2979048

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+324
-213
lines changed

.husky/commit-msg

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +0,0 @@
1-
npx --no -- commitlint --edit $1

examples/next-12/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

site/gatsby-browser.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { ThemeProvider } from './src/components/Theme';
22
import './src/styles/global.css';
3+
import React from "react";
34

45
export const wrapRootElement = ({ element }) => <ThemeProvider>{element}</ThemeProvider>;

site/package-lock.json

Lines changed: 66 additions & 38 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

site/src/components/Dropdown/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { useState } from 'react';
22
import Sidebar from '../Sidebar';
3+
import React from "react";
34

45
const Dropdown = () => {
56
const [drop1, setDrop1] = useState(false);

site/src/components/Footer/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import React from "react";
12
const Footer = () => {
23
return (
34
<div className="ml-[17.5rem] pt-[5rem]">

site/src/components/Navigation/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { useContext } from 'react';
2+
import React from "react";
23
import Search from '../../assets/images/Search.svg';
34
import SearchDark from '../../assets/images/SearchDark.svg';
45
import Weather from '../../assets/images/Weather.svg';

site/src/components/Sidebar/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import React from "react";
12
import { useState } from 'react';
23
import { Link } from 'react-router-dom';
34
import ChevronLightUp from '../../assets/images/Chevron-light-up.svg';

site/src/pages/404.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import React from 'react';
12
import { Link } from 'gatsby';
23

34
const pageStyles = {

0 commit comments

Comments
 (0)