Skip to content

Instantly share code, notes, and snippets.

@vslala
Created July 6, 2019 14:06
Hellow World component for hello world application
import React, {useState} from "react";
import { useSelector } from 'react-redux';
export default function HelloWorld() {
const tech = useSelector(state => state.tech);
return (
<h1>
Say Hello To: {tech}
</h1>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment