mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-11 18:56:41 +00:00
13 lines
422 B
TypeScript
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;
|
||
|
}
|