Files
inkling/src/renderer/inbox/components/NotebookCreateModal.tsx
th-kim0823 7b3450d0d5 feat(ui): Sidebar + NotebookList + NotebookCreateModal stub
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-15 10:47:07 +09:00

16 lines
495 B
TypeScript

import React from 'react';
// Stub for Task 12 — full implementation in Task 13.
export function NotebookCreateModal({ onClose }: { onClose: () => void }): React.ReactElement {
return (
<div
style={{ position: 'fixed', inset: 0, background: 'rgba(0,0,0,0.4)', zIndex: 120 }}
onClick={onClose}
>
<div style={{ background: '#fff', padding: 20, margin: '20% auto', width: 320 }}>
(NotebookCreateModal Task 13 )
</div>
</div>
);
}