14 lines
287 B
JavaScript
14 lines
287 B
JavaScript
const TabBar = ({ children }) => (
|
|
<nav
|
|
id="tab-bar"
|
|
className="py-2 h-16 bg-white w-full flex justify-center items-start bg-gray-50 z-10"
|
|
style={{
|
|
height: `calc(env(safe-area-inset-bottom, 0px) + 56px)`,
|
|
}}
|
|
>
|
|
{children}
|
|
</nav>
|
|
);
|
|
|
|
export default TabBar;
|