pub type Cell<T> = NotebookCell<T>;
enum Cell<T> { RichText { id: Uuid, content: String, }, Formal { id: Uuid, content: T, }, Stem { id: Uuid, }, }
id: Uuid
content: String
content: T