Skip to content

Commit

Permalink
docs(PF4 badge): update doc to show read/unread styles appropriately (#…
Browse files Browse the repository at this point in the history
…662)

affects: patternfly4-react-lerna-root, @patternfly/react-core

ISSUES CLOSED: #660
  • Loading branch information
jeff-phillips-18 authored and tlabaj committed Sep 26, 2018
1 parent 2259aeb commit 47e61db
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import React from 'react';
import { Badge } from '@patternfly/react-core';
import getContainerProps from './common/getContainerProps';

class UnreadBadge extends React.Component {
static title = 'Unread Badge';
class ReadBadge extends React.Component {
static title = 'Read Badge';
static getContainerProps = getContainerProps;

render() {
Expand All @@ -18,4 +18,4 @@ class UnreadBadge extends React.Component {
}
}

export default UnreadBadge;
export default ReadBadge;
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import React from 'react';
import { Badge } from '@patternfly/react-core';
import getContainerProps from './common/getContainerProps';

class ReadBadge extends React.Component {
static title = 'Read Badge';
class UnreadBadge extends React.Component {
static title = 'Unread Badge';
static getContainerProps = getContainerProps;

render() {
Expand All @@ -18,4 +18,4 @@ class ReadBadge extends React.Component {
}
}

export default ReadBadge;
export default UnreadBadge;

0 comments on commit 47e61db

Please sign in to comment.