Skip to content

Instantly share code, notes, and snippets.

@chitru
Created February 5, 2020 10:56
Show Gist options
  • Save chitru/5dac6c201f6aeab176658d7d6498f3cd to your computer and use it in GitHub Desktop.
Save chitru/5dac6c201f6aeab176658d7d6498f3cd to your computer and use it in GitHub Desktop.
MultiStepForm
import React from "react";
const Submit = ({ navigation }) => {
const { go } = navigation;
return (
<div>
<h3>Thank you for submitting. We will be in touch</h3>
New Form -> <button onClick={() => go("names")}>New</button>
</div>
);
};
export default Submit;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment