Incubator Suggestion
The Incubator Suggestion component renders a list of suggested incubators.
This list is composed of items containing incubator's title, info, a subscription status bar and a subscribe button that allows users to subscribe/unsubscribe to an incubator.
By clicking the incubator title it is possible to open a modal card showing the incubators details and a section where it is possible to share the item on social networks.
The incubators are shown in an orderly manner: few items are shown in the main card while the others can be displayed in a modal card by clicking on the "show all" button.
Usage
 import React from 'react';
 import {SCContextProvider} from '@selfcommunity/react-core';
 import {IncubatorSuggestionWidget} from '@selfcommunity/react-ui';
 function App() {
   const conf = {
     portal: '<community-path>',
     session: {
       type: 'OAuth',
       token: '<community-token>',
       refreshToken: '<community-refresh-token>',
       refreshTokenEndpoint: '<community-refresh-endpoint>',
     },
   };
   return (
     <SCContextProvider conf={conf}><IncubatorSuggestionWidget /></SCContextProvider>
   );
 }