πClient Support
Screens with information that help the user to be able to establish communication with the application support team.
Integrations
API_CLIENT_SUPPORT_SUBJECTS='/supports/subject-options'
API_CLIENT_SUPPORT_CREATE_TICKET='/supports/create-ticket'How to use it?
import {SUPPORT_SCREENS} from 'LinkerStudio/modules/clientSupport/constants';<Stack.Navigator>
{SUPPORT_SCREENS.map(screen => (
<Stack.Screen
key={screen.name}
name={screen.name}
component={screen.component}
options={{headerShown: false}}
/>
))}
</Stack.Navigator>Last updated