import React from 'react';
import Logo from './svg/Logo';
const Header = ({ enableHeroText }) => (
{enableHeroText ? (
Create and share beautiful images of your source code.
Start typing, or drop a file
into the text area to get started.
) : null}
);
export default Header;