I have a simple header component I want to send out some values in.Although, it may be a little too simple to warrant a component I am trying to figure out how to export the value out of the component. This is what I have so far.
import React from "react";
const welcome = { title: "Welcome"}
export default ()=> (
<h1 className="App-header">{{welcome.title}}</h1>
)
Any ideas?