What this Question is trying to figure out is simple:
"Can I send props programatically from one scene to another, and if so, how?"
Below I have provided a sample set of code in the hope that someone will have the knowledge to clear this up once and for all.
App.js file:
const Main = () => (
    <main>
        <Switch>
            <Route exact path='/Job' component={Job}/>
            <Route path='/Preview' component={Preview}/>
        </Switch>
    </main>
Job.js:
Long story short, the file takes input and outputs once the user clicks submit, this function is called:
 handleClick(){
    //The state I wish to pass: this.state.propToPass
    //my current implementation for moving to the correct scene:
    this.props.history.push('/Preview')
}
Preview.js
constructor(props){
    super(props)
    //console.log(the prop that has been sent)
}
I will be eternally gratuful to anyone who understands the problem and can shed some light on my dilemma.
Thank you very much.
 
     
     
    