in an incognito window. You will be redirected to
the first step of the flow at `/start/hello/hello-world`, where you should see your new React component.
8 - now we need a way for users to move to the next step of the flow. Let's add a button and a form to the step's `render` method:
```jsx
function render() {
return (
);
}
```
Make sure to require `SignupActions`:
```javascript
import SignupActions from 'calypso/lib/signup/actions';
```
... and to create a function to handle what happens when the form is submitted:
```javascript
handleSubmit = ( event ) => {
event.preventDefault();
SignupActions.submitSignupStep( {
stepName: this.props.stepName,
} );
this.props.goToNextStep();
};
```
9 - open in an incognito window. On opening you should be redirected to the first step showing your updated React component, and when you click the "Get started" button you should be taken to the next step.