Skip to content

Instantly share code, notes, and snippets.

@JoelCodes
Created April 18, 2020 19:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JoelCodes/4c8a75303c5f8d690891d8ad0e5bf03f to your computer and use it in GitHub Desktop.
Save JoelCodes/4c8a75303c5f8d690891d8ad0e5bf03f to your computer and use it in GitHub Desktop.
{
"name": "Yes, That Joel Shinness"
}
import { render } from "react-dom";
import React from "react";
import BillMurray from './BillMurray.jpg';
type DemoProps = { name:string };
function Demo({ name }:DemoProps){
return <>
<h1>Hi, { name }!</h1>
<img src={BillMurray}/>
</>
}
render(<Demo name="YouTube friends!"/>, document.getElementById('root'));
{
"name": "parcel-demo",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"parcel": "^1.12.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"typescript": "^3.8.3"
}
}
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@900&display=swap');
$roboto: 'Roboto', sans-serif;
html {
background: #333;
color: white;
font-family: $roboto;
}
{
"compilerOptions": {
"jsx": "react",
"esModuleInterop": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment