Skip to content

Commit 2961eb8

Browse files
committed
Updated Logo
1 parent d170adb commit 2961eb8

File tree

2 files changed

+19
-15
lines changed

2 files changed

+19
-15
lines changed

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1+
<br />
2+
<br />
13
<div align="center">
2-
<a href="https://github.com/tannerlinsley/react-table" target="\_parent"><img src="https://github.com/tannerlinsley/react-table/raw/master/media/Banner.png" alt="React Table Logo" style="width:450px;"/></a>
4+
<a href="https://github.com/tannerlinsley/react-table" target="\_parent"><img src="https://github.com/react-tools/media/raw/master/logo-react-table.png" alt="React Table Logo" style="width:450px;"/></a>
35
<br />
46
<br />
57

@@ -33,13 +35,6 @@
3335

3436
[![Sponsor](https://app.codesponsor.io/embed/zpmS8V9r31sBSCeVzP7Wm6Sr/tannerlinsley/react-table.svg)](https://app.codesponsor.io/link/zpmS8V9r31sBSCeVzP7Wm6Sr/tannerlinsley/react-table)
3537

36-
## Versions
37-
This document refers to version 6.x.x of react-table.
38-
39-
Previous versions:
40-
41-
[5.x.x Readme](https://github.com/tannerlinsley/react-table/blob/ad7d31cd3978eb45da7c6194dbab93c1e9a8594d/README.md)
42-
4338
## Features
4439
- Lightweight at 7kb (and just 2kb more for styles)
4540
- Fully customizable JSX templating
@@ -53,6 +48,12 @@ Previous versions:
5348
- <a href="http://codepen.io/tannerlinsley/pen/QpeZBa?editors=0010" target="\_blank">Codepen</a>
5449
- <a href="http://react-table.js.org/#/story/simple-table" target="\_parent">Storybook</a>
5550

51+
## Versions
52+
- This documentation is for version 6 of react-table.
53+
- [View the Changelog](https://github.com/tannerlinsley/react-table/blob/master/CHANGELOG.md)
54+
- Previous versions:
55+
- [5.x.x Readme](https://github.com/tannerlinsley/react-table/blob/ad7d31cd3978eb45da7c6194dbab93c1e9a8594d/README.md)
56+
5657
## Table of Contents
5758
- [Installation](#installation)
5859
- [Example](#example)

docs/src/App.js

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import ControlledTable from './stories/ControlledTable.js'
2626
import PivotingOptions from './stories/PivotingOptions.js'
2727
import EditableTable from './stories/EditableTable.js'
2828
import FixedHeader from './stories/FixedHeader.js'
29-
import MultiplePagers from './stories/MultiplePagers';
29+
import MultiplePagers from './stories/MultiplePagers'
3030

3131
export default class App extends React.Component {
3232
render() {
@@ -38,7 +38,7 @@ export default class App extends React.Component {
3838
height: '100%'
3939
}}
4040
pathPrefix="story/"
41-
StoryWrapper={props => (
41+
StoryWrapper={props =>
4242
<defaultProps.StoryWrapper
4343
css={{
4444
padding: 0
@@ -53,10 +53,11 @@ export default class App extends React.Component {
5353
}}
5454
>
5555
<img
56-
src="//npmcdn.com/react-table/media/Banner.png"
56+
src="https://github.com/react-tools/media/raw/master/logo-react-table.png"
5757
alt="React Table Logo"
5858
style={{
59-
width: '100px'
59+
width: '150px',
60+
padding: '10px'
6061
}}
6162
/>
6263
</a>
@@ -66,8 +67,7 @@ export default class App extends React.Component {
6667
padding: '10px'
6768
}}
6869
/>
69-
</defaultProps.StoryWrapper>
70-
)}
70+
</defaultProps.StoryWrapper>}
7171
stories={[
7272
{ name: 'Readme', component: Readme },
7373
{ name: 'Simple Table', component: Simple },
@@ -102,7 +102,10 @@ export default class App extends React.Component {
102102
{ name: 'Controlled Component', component: ControlledTable },
103103
{ name: 'Editable Table', component: EditableTable },
104104
{ name: 'Fixed Header w/ Vertical Scroll', component: FixedHeader },
105-
{ name: 'Multiple Pagers (Top and Bottom)', component: MultiplePagers}
105+
{
106+
name: 'Multiple Pagers (Top and Bottom)',
107+
component: MultiplePagers
108+
}
106109
]}
107110
/>
108111
)

0 commit comments

Comments
 (0)