@sartech/ai-travel-tech
v0.1.1
Published
Reusable AI travel tech React UI component library for travel booking applications.
Readme
@sartech/ai-travel-tech
Reusable AI travel tech React UI component library.
Installation
npm install @sartech/ai-travel-techUsage
import React from 'react';
import { TravelCard } from '@sartech/ai-travel-tech';
function App() {
return (
<TravelCard
title="Paris Getaway"
subtitle="Round-trip flight + hotel"
price="$899"
imageUrl="https://placekitten.com/400/240"
actionText="Book now"
onAction={() => alert('Booking started')}
/>
);
}
export default App;Components
TravelCard— reusable travel offer card with title, subtitle, price, image, and action button.
