add ids back again

main
Mike Fix 6 years ago
parent f9be12e68f
commit 4d91c5d4c9

@ -43,7 +43,7 @@ class ExportMenu extends React.PureComponent {
const { exportSize, filename, isVisible, toggleVisibility } = this.props const { exportSize, filename, isVisible, toggleVisibility } = this.props
return ( return (
<div className="export-menu-container"> <div className="export-menu-container" id="export-menu">
<div className="flex"> <div className="flex">
<Button <Button
border border
@ -104,6 +104,7 @@ class ExportMenu extends React.PureComponent {
hoverColor={COLORS.PURPLE} hoverColor={COLORS.PURPLE}
color={COLORS.DARK_PURPLE} color={COLORS.DARK_PURPLE}
onClick={this.handleExport('png')} onClick={this.handleExport('png')}
id="export-png"
> >
PNG PNG
</Button> </Button>
@ -112,6 +113,7 @@ class ExportMenu extends React.PureComponent {
hoverColor={COLORS.PURPLE} hoverColor={COLORS.PURPLE}
color={COLORS.DARK_PURPLE} color={COLORS.DARK_PURPLE}
onClick={this.handleExport('svg')} onClick={this.handleExport('svg')}
id="export-svg"
> >
SVG SVG
</Button> </Button>

Loading…
Cancel
Save