feat: add reactions

This commit is contained in:
Paul Makles
2022-07-16 15:17:02 +01:00
parent dbe8a64ffc
commit 084c90613f
7 changed files with 95 additions and 20 deletions

View File

@@ -6,9 +6,9 @@ import { visit } from "unist-util-visit";
* Props given to custom components
*/
export interface CustomComponentProps {
type: string;
type?: string;
match: string;
arg1: string;
arg1?: string;
}
/**