Mirror to GitHub / mirror (push) Canceled after 0s
- web: two-pane app chrome (chat panel + browser-framed preview) - ChatPanel, Preview, ApproveBar components + useChat (mock agent for now) - Fluent/Figma design system (Inter, dark chrome, elevation, motion) - 107 unit tests + Playwright e2e green; web typechecks + builds
22 lines
581 B
TypeScript
22 lines
581 B
TypeScript
type ApproveBarProps = {
|
|
visible: boolean;
|
|
onApprove: () => void;
|
|
onReject: () => void;
|
|
};
|
|
|
|
export function ApproveBar({ visible, onApprove, onReject }: ApproveBarProps) {
|
|
if (!visible) return null;
|
|
|
|
return (
|
|
<div className="approve-bar">
|
|
<span className="approve-copy">Looks good?</span>
|
|
<button className="wursor-approve-button" type="button" onClick={onApprove}>
|
|
Looks good → Apply
|
|
</button>
|
|
<button className="wursor-reject-button" type="button" onClick={onReject}>
|
|
Not right → Reject
|
|
</button>
|
|
</div>
|
|
);
|
|
}
|