-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (27 loc) · 987 Bytes
/
index.html
File metadata and controls
30 lines (27 loc) · 987 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="pr-BR">
<head>
<meta charset="UTF-8">
<title>Exemplo utilizando sintaxe sugar do ReactJS, Babel e CommonJS.</title>
<link rel="stylesheet" type="text/css" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<style>
body{
visibility: hidden;
}
.module-holder{
padding-bottom: 100px;
}
.module-holder a{
cursor: pointer;
}
</style>
</head>
<body>
<main class="container text-center"></main>
<footer class="container text-center">
Exemplo feito em <a href="https://webpack.github.io/docs/commonjs.html" target="_blank">CommonJS</a> e ReactJS, via <a href="https://babeljs.io/docs/plugins/preset-react/" target="_blank">babel-presect-react</a> e compactados via <a href="https://github.com/petehunt/webpack-howto" target="_blank">webpack</a><br>
Agradecimentos a <a href="https://github.com/fdaciuk/reactjs-workflow" target="_blank">Fernando Daciuk</a>
</footer>
<script src="build/bundle.js"></script>
</body>
</html>