mirror of https://gitlab.com/ecentrics/concordia
Apostolos Fanakis
4 years ago
2 changed files with 34 additions and 11 deletions
@ -0,0 +1,16 @@ |
|||
import React from 'react'; |
|||
import { Container, Header, Icon } from 'semantic-ui-react'; |
|||
|
|||
const PollDataInvalid = () => ( |
|||
<Container id="topic-poll-data-invalid-container"> |
|||
<Header as="h3"> |
|||
<Icon name="warning sign" color="red" /> |
|||
<Header.Content> |
|||
This topic has a poll but the data are untrusted! |
|||
<Header.Subheader>The poll data downloaded from the poster have been tampered with.</Header.Subheader> |
|||
</Header.Content> |
|||
</Header> |
|||
</Container> |
|||
); |
|||
|
|||
export default PollDataInvalid; |
Loading…
Reference in new issue