Files
outline/shared/editor/components/Styles.ts
Tom Moor e8a6de3f18 feat: Add HTML export option (#4056)
* tidy

* Add title to HTML export

* fix: Add compatability for documents without collab state

* Add HTML download option to UI

* docs

* fix nodes that required document to render

* Refactor to allow for styling of HTML export

* div>article for easier programatic content extraction
2022-09-07 04:34:39 -07:00

9 lines
184 B
TypeScript

import styled from "styled-components";
import style, { Props } from "../../styles/editor";
const EditorContainer = styled.div<Props>`
${style};
`;
export default EditorContainer;