Files
nextfire-app/components/Loader.js
LucasLassiter fb28b8380d added things
2022-05-03 22:00:45 -07:00

3 lines
99 B
JavaScript

export default function Loader({ show }) {
return show ? <div className="loader"></div> : null;
}