Skip to content

Instantly share code, notes, and snippets.

@formula1
formula1 / example.jsx
Created March 2, 2017 21:24
Simple React Server
module.exports = function(props){
return (
<html>
<head></head>
<body>
<h1>This is an example</h1>
<ul>{props.data.map(function(item){
return <li>{item.toString()}</li>;
})}</ul>
</body>
@formula1
formula1 / docker-compose.yml
Last active March 3, 2017 03:25
selenium testing
version: "3"
services:
fileserver:
image: kyma/docker-nginx
command: nginx
volumes:
- "./:/var/www"
ports:
- "8080:80"
hub: