Skip to content

Commit

Permalink
merge conflicts resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
kdavina committed Jan 20, 2019
2 parents 0b2b078 + 178553c commit d55409f
Show file tree
Hide file tree
Showing 190 changed files with 22,862 additions and 17 deletions.
316 changes: 300 additions & 16 deletions feelsbook/feelsbook/package-lock.json

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions feelsbook/feelsbook/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"bootstrap": "^3.4.0",
"jquery": "^3.3.1",
"popper.js": "^1.14.6",
"react": "^16.7.0",
"react-bootstrap": "^1.0.0-beta.4",
"react-dom": "^16.7.0",
"react-scripts": "2.1.3"
},
Expand Down
15 changes: 15 additions & 0 deletions feelsbook/feelsbook/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,19 @@
To create a production bundle, use `npm run build` or `yarn build`.
-->
</body>
<script
src="https://unpkg.com/react/umd/react.production.js"
crossorigin
></script>
<script
src="https://unpkg.com/react-dom/umd/react-dom.production.js"
crossorigin
></script>
<script
src="https://unpkg.com/react-bootstrap@next/dist/react-bootstrap.min.js"
crossorigin
></script>
<script>
var Alert = ReactBootstrap.Alert;
</script>
</html>
2 changes: 2 additions & 0 deletions feelsbook/feelsbook/src/App.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
import React, { Component } from 'react';
import './App.css';
import Title from './components/Title'
import MainContainer from './components/MainContainer';

class App extends Component {
render() {
return (
<div className="App">
<Title></Title>
<MainContainer></MainContainer>
</div>
);
}
Expand Down
2 changes: 1 addition & 1 deletion feelsbook/feelsbook/src/App.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ it('renders without crashing', () => {
const div = document.createElement('div');
ReactDOM.render(<App />, div);
ReactDOM.unmountComponentAtNode(div);
});
});
53 changes: 53 additions & 0 deletions feelsbook/feelsbook/src/components/MainContainer.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
import React, { Component } from 'react';
import './css/MainContainer.css';
import { Card } from 'react-bootstrap';
import { Nav } from 'react-bootstrap';
import { Button } from 'react-bootstrap';

class MainContainer extends Component {
render() {
return (
<div className="MainContainer notebook">
{/* <Card>
<Card.Header>
<Nav variant="tabs" defaultActiveKey="#first">
<Nav.Item>
<Nav.Link href="#first">Active</Nav.Link>
</Nav.Item>
<Nav.Item>
<Nav.Link href="#link">Link</Nav.Link>
</Nav.Item>
<Nav.Item>
<Nav.Link href="#disabled" disabled>
Disabled
</Nav.Link>
</Nav.Item>
</Nav>
</Card.Header>
<Card.Body>
<Card.Title>Special title treatment</Card.Title>
<Card.Text>
With supporting text below as a natural lead-in to additional content.
</Card.Text>
<Button variant="primary">Go somewhere</Button>
</Card.Body>
</Card>; */}

<Card style={{ width: '18rem' }}>
<Card.Img variant="top" src="holder.js/100px180" />
<Card.Body>
<Card.Title>Card Title</Card.Title>
<Card.Text>
Some quick example text to build on the card title and make up the bulk of
the card's content.
</Card.Text>
<Button variant="primary">Go somewhere</Button>
</Card.Body>
</Card>;
</div>

);
}
}

export default MainContainer;
3 changes: 3 additions & 0 deletions feelsbook/feelsbook/src/components/css/MainContainer.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.notebook {
background-color: #ffe49b
}
1 change: 1 addition & 0 deletions feelsbook/feelsbook/src/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import 'bootstrap/dist/css/bootstrap.css';
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
Expand Down
22 changes: 22 additions & 0 deletions node_modules/bootstrap/LICENSE

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

213 changes: 213 additions & 0 deletions node_modules/bootstrap/README.md

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

0 comments on commit d55409f

Please sign in to comment.