Skip to content

Commit

Permalink
created component dir and added Intro and Portfolio component to dir
Browse files Browse the repository at this point in the history
  • Loading branch information
marvtdawson committed Sep 20, 2019
1 parent 7e90817 commit e0735c5
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 8 deletions.
8 changes: 6 additions & 2 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 2 additions & 6 deletions src/App.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
import React, { Component } from 'react';
import './App.css';
import Portfolio from './Porfolio/Portfolio';
import Portfolio from './components/Porfolio/Portfolio';
import Intro from "./components/Intro";

const Intro = (props) => (
<p className="App-intro">
Marvin's Online React Portfolio
</p>
)

class App extends Component {
render() {
Expand Down
11 changes: 11 additions & 0 deletions src/components/Intro/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import React from "react";


const Intro = props => (
<p className="App-intro">
Marvin's Online React Portfolio
</p>
);


export default Intro;
File renamed without changes.
File renamed without changes.

0 comments on commit e0735c5

Please sign in to comment.