summaryrefslogtreecommitdiffstats
path: root/webapp/components/signup_team_complete/components/team_signup_finished.jsx
blob: 9fbb8473a88923515bcb630483fd7c769c2737c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

import {FormattedMessage} from 'react-intl';

import React from 'react';

export default class FinishedPage extends React.Component {
    render() {
        return (
            <FormattedMessage
                id='signup_team_complete.completed'
                defaultMessage="You've already completed the signup process for this invitation or this invitation has expired."
            />
        );
    }
}