adds like dislike

This commit is contained in:
ajaythapliyal
2023-03-05 22:36:57 +05:30
parent 787a06d06e
commit 37ae24b879
9 changed files with 256 additions and 6 deletions

7
frontend/svg.d.ts vendored Normal file
View File

@@ -0,0 +1,7 @@
declare module '*.svg' {
import * as React from 'react';
export const ReactComponent: React.FunctionComponent<
React.SVGProps<SVGSVGElement> & { title?: string }
>;
}