diff --git a/app/components/ButtonLink.js b/app/components/ButtonLink.js new file mode 100644 index 000000000..b42e1efdc --- /dev/null +++ b/app/components/ButtonLink.js @@ -0,0 +1,23 @@ +// @flow +import * as React from "react"; +import styled from "styled-components"; + +type Props = { + onClick: (ev: SyntheticEvent<>) => void, + children: React.Node, +}; + +export default function ButtonLink(props: Props) { + return