import { Book } from "../types/Book"; export const createBook = ({ uuid, title, isbn, shelf, published, }: Pick) => `INSERT INTO bookData SET uuid = '${uuid}', title = '${title}', isbn = '${isbn}', shelf = '${shelf}', published = '${published}';`;