Skip to content

Instantly share code, notes, and snippets.

View ole-treichel's full-sized avatar

Ole Treichel ole-treichel

View GitHub Profile
const libtidy = require('libtidy')
let options = {
indent: true,
indentSpaces: 2,
markup: true,
doctype: 'omit',
showBodyOnly: true
}
const fs = require('fs')
import React from 'react';
class App extends React.Component {
render() {
return (
<div>
<Header/>
<Content/>
</div>
);