Skip to content

Instantly share code, notes, and snippets.

@vslala
Created July 6, 2019 14:06
Show Gist options
  • Select an option

  • Save vslala/21219e22f848e32ac115553a45d11f1c to your computer and use it in GitHub Desktop.

Select an option

Save vslala/21219e22f848e32ac115553a45d11f1c to your computer and use it in GitHub Desktop.
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