More components

This commit is contained in:
Max Lynch
2020-12-20 21:53:23 -06:00
parent df54b5834b
commit fdef2842ef
56 changed files with 2000 additions and 222 deletions
+9
View File
@@ -0,0 +1,9 @@
const TabBar = ({ children }) => (
<nav id="tab-bar" className="h-16 bg-white fixed bottom-0 w-full flex justify-center items-center bg-gray-50">
{children}
</nav>
)
export default TabBar;