16 lines
495 B
TypeScript
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>
|
|
);
|
|
}
|