Need to pass props from child to parent in React Firebase app
I'm building a React Firebase blog and I want to pass {color} from the ViewPosts component (child) to the App component (parent). App looks like this: function App() { const [backgroundColor, setBackgroundColor] = useState(""); return ( <div className="app" style={{ background:…