Skip to content

Instantly share code, notes, and snippets.

@velopert
Created January 14, 2017 13:05
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 velopert/dcdf9aca4871cef66b62aa7cf489b0fe to your computer and use it in GitHub Desktop.
Save velopert/dcdf9aca4871cef66b62aa7cf489b0fe to your computer and use it in GitHub Desktop.
import React from 'react';
import './BigText.css';
const BigText = ({children}) => {
return (
<div className="big-text">
{children}
</div>
);
};
export default BigText;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment