tripkit-react
v1.0.2
Published
The React SDK for the TripGo API
Maintainers
Readme
TripKit SDK for React
The React SDK for the TripGo API.
Installation
npm install tripkit-reactUsage
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>);