https://github.com/skedgo/tripkit-react
The React SDK for the TripGo API
https://github.com/skedgo/tripkit-react
reactjs routing sdk-react trip-planning tripgo-api
Last synced: 6 days ago
JSON representation
The React SDK for the TripGo API
- Host: GitHub
- URL: https://github.com/skedgo/tripkit-react
- Owner: skedgo
- License: mit
- Created: 2023-03-01T18:13:53.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-08-22T16:20:33.000Z (5 months ago)
- Last Synced: 2025-08-22T18:56:08.936Z (5 months ago)
- Topics: reactjs, routing, sdk-react, trip-planning, tripgo-api
- Language: TypeScript
- Homepage: https://react.developer.tripgo.com
- Size: 12.9 MB
- Stars: 0
- Watchers: 7
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
TripKit SDK for React
======================================
The React SDK for the [TripGo API](https://developer.tripgo.com/).
## Installation
```
npm install tripkit-react
```
## Usage
[Get a TriGo API key](https://tripgo.3scale.net/signup?plan_ids[]=2357356192718) and pass it to the
[TKRoot component](https://react.developer.tripgo.com/reference/#/Main%20SDK%20component%3A%20TKRoot) through the [config object](https://react.developer.tripgo.com/reference/#/Model/TKUIConfig).
```jsx
import React from 'react';
import { createRoot } from 'react-dom/client';
import { TKRoot, TKUITripPlanner } from 'tripkit-react';
const config = {
apiKey:
};
const root = createRoot(document.getElementById('root'));
root.render(
);
```
## SDK Reference
- ### [Main SDK Component: TKRoot](https://react.developer.tripgo.com/reference/#/Main%20SDK%20component%3A%20TKRoot)
- ### [Customization](https://react.developer.tripgo.com/reference/#/Customization)
- ### [Components API](https://react.developer.tripgo.com/reference/#/Components%20API)