Skip to content

Instantly share code, notes, and snippets.

@walter76
walter76 / test.html
Created October 11, 2019 09:51
Hello World Html
<html>
<head>
<style>
h1 {
font-family: Calibri;
}
</style>
</head>
<body>
<h1>Hello World!</h1>
@walter76
walter76 / test.md
Created October 11, 2019 09:50
Hello World Markdown

Hello World

This is content converted from Markdown!

Here's a JSON sample:

{
  "foo": "bar"
}
@walter76
walter76 / some-form-component.js
Last active July 3, 2018 19:35
React Component Form Field
import React from 'react'
import { Form } from 'semantic-ui-react'
class SomeFormComponent extends React.Component {
constructor(props) {
super(props)
this.state = {
name: ''
}