Skip to content
Snippets Groups Projects
Commit 61097e67 authored by Rafael László's avatar Rafael László :speech_balloon:
Browse files

typo fix

parent 8e19b908
No related branches found
No related tags found
No related merge requests found
import React, { Component } from 'react'; import React, { Component } from 'react';
import { Container, Header, Segment, Divider } from 'semantic-ui-react'; import { Container, Header, Segment, Divider } from 'semantic-ui-react';
import './Groups.css'; import './Groups.css';
import GrouCard from '../extra/GroupCard' import GroupCard from '../extra/GroupCard'
import { connect } from 'react-redux'; import { connect } from 'react-redux';
import { getGroups } from '../../actions/groups'; import { getGroups } from '../../actions/groups';
...@@ -34,7 +34,7 @@ class Groups extends Component { ...@@ -34,7 +34,7 @@ class Groups extends Component {
<Segment style={{ padding: '1em 0em 5em' }} vertical> <Segment style={{ padding: '1em 0em 5em' }} vertical>
<Container text> <Container text>
{ this.props.groups.map(item => { { this.props.groups.map(item => {
return <GrouCard key={item.id} label={item.name} value={item.description}/> return <GroupCard key={item.id} label={item.name} value={item.description}/>
})} })}
</Container> </Container>
</Segment> </Segment>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment