Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b9c2517

Browse files
committed
fix: move footer component to common
1 parent 32a793f commit b9c2517

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed
File renamed without changes.

src/components/layout.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import PropTypes from 'prop-types';
1010
import { useStaticQuery, graphql } from 'gatsby';
1111
import { Box, Container, useColorModeValue } from '@chakra-ui/react';
1212

13-
import Footer from './Footer';
13+
import Footer from '../components/Common/Footer';
1414

1515
const Layout = ({ children }) => {
1616
const theme = useColorModeValue('light', 'dark');

src/root-wapper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { ChakraProvider, extendTheme } from '@chakra-ui/react';
22
import React from 'react';
33
import { Provider } from 'redux-zero/react';
44
import { mode } from '@chakra-ui/theme-tools';
5-
import Layout from './components/Layout';
5+
import Layout from './components/layout';
66
import { store } from './state';
77

88
// eslint-disable-next-line import/prefer-default-export

0 commit comments

Comments
 (0)