Newer
Older
import React from "react";
export default [ // Collection of Artworks that will be displayed
<svg viewBox={"0 0 200 80"}>
<rect width={"200"} height={80} fill={"red"} />
</svg>,
<svg viewBox={"0 0 200 80"}>
<rect width={"200"} height={80} fill={"pink"} />
</svg>,
<svg viewBox={"0 0 200 80"}>
<rect width={"200"} height={80} fill={"black"} />
</svg>,
<svg viewBox={"0 0 200 80"}>
<rect width={"200"} height={80} fill={"brown"} />
</svg>,
<svg viewBox={"0 0 200 80"}>
<rect width={"200"} height={80} fill={"purple"} />
</svg>,
<svg viewBox={"0 0 200 80"}>
<rect width={"200"} height={80} fill={"yellow"} />
</svg>,
<svg viewBox={"0 0 200 80"}>
<rect width={"200"} height={80} fill={"green"} />
</svg>,
<svg viewBox={"0 0 200 80"}>
<rect width={"200"} height={80} fill={"gray"} />
</svg>,
<svg viewBox={"0 0 200 80"}>
<rect width={"200"} height={80} fill={"teal"} />
</svg>,
// TODO: ADD SVGS IN HERE
];