Staff Booking
Booking for a specific staff member. Only their services are shown, and time slots are grouped by location.
John works at East Village and SoHo. The widget shows only his services and his availability at each location.
React code
import { BookingWidget } from "@openings-link/react-ui";
// Pass memberId to open a specific staff member's booking page.
// Shows only their services and availability across all locations.
<BookingWidget
business="demo"
memberId="mem_john"
theme={{ accent: "#dc2626" }}
on={{
onBookingComplete: (result) => {
console.log("Booked!", result);
},
}}
/>