Skip to content

Commit ebc1601

Browse files
committed
fix header and meta imports
1 parent b3bebda commit ebc1601

File tree

4 files changed

+8
-8
lines changed
  • finished-application/frontend/components
  • stepped-solutions

4 files changed

+8
-8
lines changed

finished-application/frontend/components/Page.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React, { Component } from 'react';
22
import styled, { ThemeProvider, injectGlobal } from 'styled-components';
3-
import Header from '../components/Header';
4-
import Meta from '../components/Meta';
3+
import Header from './Header';
4+
import Meta from './Meta';
55

66
const theme = {
77
red: '#FF0000',

stepped-solutions/05/frontend/components/Page.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React, { Component } from 'react';
2-
import Header from '../components/Header';
3-
import Meta from '../components/Meta';
2+
import Header from './Header';
3+
import Meta from './Meta';
44

55
class Page extends Component {
66
render() {

stepped-solutions/07/frontend/components/Page.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React, { Component } from 'react';
2-
import Header from '../components/Header';
3-
import Meta from '../components/Meta';
2+
import Header from './Header';
3+
import Meta from './Meta';
44

55
class Page extends Component {
66
render() {

stepped-solutions/08/frontend/components/Page.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React, { Component } from 'react';
2-
import Header from '../components/Header';
3-
import Meta from '../components/Meta';
2+
import Header from './Header';
3+
import Meta from './Meta';
44
import styled, { ThemeProvider, injectGlobal } from 'styled-components';
55

66
const theme = {

0 commit comments

Comments
 (0)