Skip to content

Instantly share code, notes, and snippets.

@alfonsogarciacaro
Created December 17, 2018 11:02
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 alfonsogarciacaro/128eb7f51df8ed468863814e8b8c5d39 to your computer and use it in GitHub Desktop.
Save alfonsogarciacaro/128eb7f51df8ed468863814e8b8c5d39 to your computer and use it in GitHub Desktop.
Created with Fable REPL
#app div {
margin: 0;
padding: 20px;
background-color: lightyellow;
}
open Fable.Helpers.React
let view =
div [] [str "Hello world"]
mountById "app" view
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=utf-8'>
<script src="__HOST__/libs/react.production.min.js"></script>
<script src="__HOST__/libs/react-dom.production.min.js"></script>
<link rel="stylesheet" href="__HOST__/libs/css/bulma.min.css" />
<link rel="stylesheet" href="__HOST__/libs/css/font-awesome.min.css" />
</head>
<body class="app-container">
<div id="app"></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment