symphony-integration-commons
Version:
Common components for 3rd party developers build the user facing application for Symphony Integrations.
19 lines (16 loc) • 620 B
JSX
import React from 'react';
import MessageBox from '../components/MessageBox/MessageBox';
import IntegrationHeader from '../components/IntegrationHeader/IntegrationHeader';
import TableInstanceContainer from '../components/TableInstance/TableInstanceContainer';
import SetupInstructions from '../components/SetupInstructions/SetupInstructions';
import ConfigureNew from '../components/ConfigureNew/ConfigureNew';
const Home = () => (
<div>
<MessageBox />
<IntegrationHeader showSubTitle={false} />
<SetupInstructions />
<ConfigureNew />
<TableInstanceContainer />
</div>
);
export default Home;