Performers component v1

This commit is contained in:
2022-06-14 19:48:15 +03:00
parent a4e224117c
commit 31553c0ed8
12 changed files with 317 additions and 50 deletions

9
types/Performer.ts Normal file
View File

@@ -0,0 +1,9 @@
type Performer = {
id: number,
name: string,
paragraphs: Array<string>,
imagePath: string,
showDesc: boolean
}
export default Performer;