Skip to content

Instantly share code, notes, and snippets.

@techomoro
Last active January 16, 2021 05:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save techomoro/14e3b408c3189b0c738a3b287bfc535e to your computer and use it in GitHub Desktop.
Save techomoro/14e3b408c3189b0c738a3b287bfc535e to your computer and use it in GitHub Desktop.
import React from "react";
import Books from "./Books";
import Favorites from "./Favorites";
function Library() {
return (
<div className="library">
<h1>Books in the library</h1>
<Books />
<h1>Favorites</h1>
<Favorites />
</div>
);
}
export default Library;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment