FlylineChatBot / src /components /SuggestedQuestions.jsx
naveen07garg's picture
Upload 4 files
5fabc0f verified
raw
history blame contribute delete
448 Bytes
const suggestions = [
"What is the leave accrual policy?",
"Is there any special policy for pilots?",
"What benefits do contract employees get?",
"How many work-from-home days are allowed?"
];
export default function SuggestedQuestions({ onSelect }) {
return (
<div className="suggested">
{suggestions.map((q, i) => (
<button key={i} onClick={() => onSelect(q)}>{q}</button>
))}
</div>
);
}