Charlie Tran 5072ef013c
feat(frontend): Module consolidation - clean up for OS logic - init virtual assistant (#1821)
* Module consolidation on datahub-web - clean up to some OS logic from previous update - initial implementation of virtual assistant

* Fix accidental change to datahub user module license
2020-08-28 10:31:15 -07:00

13 lines
422 B
TypeScript

import Component from '@glimmer/component';
// Styling class name for template
export const baseClass = 'markdown-cheat-sheet';
/**
* Simple presentational component that is meant to display the contents of a email notification
*/
export default class MarkdownCheatSheet extends Component<{}> {
// Styling class that defaults to `baseClass` , optionally might be an input to the component
baseClass = baseClass;
}