Skip to content

Commit

Permalink
Fix some merge issues
Browse files Browse the repository at this point in the history
  • Loading branch information
subtirelumihail committed Nov 30, 2016
1 parent 2a617d6 commit e434df2
Show file tree
Hide file tree
Showing 3 changed files with 766 additions and 462 deletions.
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -6,14 +6,14 @@ For the moment this is still in development and a lot of things can change.
## Install

```
npm install --save react15-fullpage
npm install --save react-fullpage
```

## Usage
### A basic usage
```javascript
import React from 'react';
import {SectionsContainer, Section} from 'react15-fullpage';
import {SectionsContainer, Section} from 'react-fullpage';

let options = {
...
Expand All @@ -36,7 +36,7 @@ In case you need a fixed header and footer you can also include the `Header` or

```javascript

import {SectionsContainer, Section, Header, Footer} from 'react15-fullpage';
import {SectionsContainer, Section, Header, Footer} from 'react-fullpage';

// => in the render() method of your app
return (
Expand Down Expand Up @@ -100,7 +100,7 @@ const Example = React.createClass({
sectionPaddingBottom: '50px',
arrowNavigation: true
};

return (
<div>
<Header>
Expand Down

0 comments on commit e434df2

Please sign in to comment.