2017-02-20 18:15:36 +02:00
|
|
|
import React from 'react';
|
|
|
|
import { FormattedMessage } from 'react-intl';
|
2017-01-09 21:08:47 +02:00
|
|
|
|
2017-02-20 18:15:36 +02:00
|
|
|
import Column from '@ui/components/column';
|
|
|
|
import Row from '@ui/components/row';
|
|
|
|
import { P } from '@ui/components/base-elements';
|
2017-02-01 16:48:06 +02:00
|
|
|
|
2017-02-20 18:15:36 +02:00
|
|
|
export default () => (
|
2017-01-09 21:08:47 +02:00
|
|
|
<Row>
|
|
|
|
<Column xs={12}>
|
2017-02-01 16:48:06 +02:00
|
|
|
<P name='empty'>
|
2017-01-09 21:08:47 +02:00
|
|
|
<FormattedMessage id='no-instances' />
|
2017-02-01 16:48:06 +02:00
|
|
|
</P>
|
2017-01-09 21:08:47 +02:00
|
|
|
</Column>
|
|
|
|
</Row>
|
|
|
|
);
|