feat: Basic trip planner agent
This commit is contained in:
15
agent/uis/trip-planner/book-restaurant/index.tsx
Normal file
15
agent/uis/trip-planner/book-restaurant/index.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
import { TripDetails } from "../../../trip-planner/types";
|
||||
|
||||
export default function BookRestaurant({
|
||||
tripDetails,
|
||||
restaurantName,
|
||||
}: {
|
||||
tripDetails: TripDetails;
|
||||
restaurantName: string;
|
||||
}) {
|
||||
return (
|
||||
<div>
|
||||
Book restaurant {restaurantName} for {JSON.stringify(tripDetails)}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user