adds integrations with bookish-server, the books API and the google books API, adds functionality for library, searching for books, and displaying renters registered in the system
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
export type Action = {
|
||||
type: string,
|
||||
data?: any,
|
||||
err?: any,
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
export type BookType = {
|
||||
title: string,
|
||||
author: string,
|
||||
imageLink: string,
|
||||
yearPublished?: string,
|
||||
isbn?: string
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
export type RenterType = {
|
||||
name: string;
|
||||
address: string;
|
||||
email: string;
|
||||
phoneNumber: string;
|
||||
}
|
||||
Reference in New Issue
Block a user