Skip to content

Instantly share code, notes, and snippets.

@ryancheta
Created May 5, 2021 04:28
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 ryancheta/e25a3781fefbdf662305ffeeac99d8a4 to your computer and use it in GitHub Desktop.
Save ryancheta/e25a3781fefbdf662305ffeeac99d8a4 to your computer and use it in GitHub Desktop.
import React from "react";
import "./styles.scss";
export default function Component({ children, ...rest }) {
return (
<div className="container flex space_between" {...rest}>
<div className="textCenter secondaryColor">{children}</div>
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment