The React SDK for the TripGo API.
npm install tripkit-react
Get a TriGo API key and pass it to the TKRoot component through the config object.
import React from 'react';
import { createRoot } from 'react-dom/client';
import { TKRoot, TKUITripPlanner } from 'tripkit-react';
const config = {
apiKey: <MY_TRIPGO_API_KEY>
};
const root = createRoot(document.getElementById('root'));
root.render(
<TKRoot config={config}>
<TKUITripPlanner />
</TKRoot>);