contact form implementation

This commit is contained in:
2024-05-01 23:25:49 +05:30
parent 62ead2b2fe
commit 26e7bd5d44
7 changed files with 77 additions and 11 deletions
+5
View File
@@ -0,0 +1,5 @@
export interface IContact{
name: string;
fromEmail: string;
content: string;
}