-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9282bd8
commit ddabf67
Showing
38 changed files
with
2,724 additions
and
168 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
More components: | ||
|
||
- `<Tweet>` | ||
- `<Reset>` (removes layout styles on anything embedded within it, so that you can use `<p>`, etc. without applying layout styles) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"presets": ["react-app"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,16 @@ | ||
/* eslint-disable import/no-webpack-loader-syntax */ | ||
import React, { Component } from 'react' | ||
|
||
import ExampleComponent from '@frontarm/document' | ||
import { NavProvider } from 'react-navi' | ||
import { Document } from '@frontarm/document' | ||
|
||
export default class App extends Component { | ||
render () { | ||
render() { | ||
return ( | ||
<div> | ||
<ExampleComponent text='Modern React component module' /> | ||
</div> | ||
<NavProvider navigation={this.props.navigation}> | ||
<Document | ||
Component={require('!babel-loader!mdx-loader!./document.md').default} | ||
/> | ||
</NavProvider> | ||
) | ||
} | ||
} |
Oops, something went wrong.