import withPageTitle from 'HOCs/withPageTitle'; import { Icon } from 'UI'; import stl from './signup.css'; import cn from 'classnames'; import SignupForm from './SignupForm'; const BulletItem = ({ text }) => (
{text}
) @withPageTitle('Signup - OpenReplay') export default class Signup extends React.Component { render() { return (
OpenReplay Cloud
OpenReplay Cloud is the hosted version of our open-source project.
We’ll manage hosting, scaling and upgrades.
); } }