Spaces:
Running
Running
File size: 448 Bytes
5fabc0f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
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>
);
}
|