Skip to content

Instantly share code, notes, and snippets.

@JWLangford
Created October 18, 2022 17:11
Show Gist options
  • Save JWLangford/02dc12d2c8f71ae1cd9872cb28c22665 to your computer and use it in GitHub Desktop.
Save JWLangford/02dc12d2c8f71ae1cd9872cb28c22665 to your computer and use it in GitHub Desktop.
import styled from "styled-components";
const Loader = styled.div`
display: ${(props) => (props.loading ? "block" : "none")};
`;
export const Loader = (props) => {
const { loading } = props;
return (
<Loader loading={loading} />
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment