import React from 'react';

export default class NavLabel extends React.Component {

  constructor(props) {
    super(props);
  }

  render() {
    return (
      <div className="ra-nav-label">
        {this.props.children}
      </div>
    );
  }

}
