Skip to content

Commit f67ae7d

Browse files
authored
Merge pull request #10 from lumihq/jmatsushita-examples
Examples for react-basic-classic
2 parents a6a2ccb + b29cb37 commit f67ae7d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+140754
-8
lines changed

examples/actions/.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
output
2+
node_modules
3+
.parcel-cache
4+
dist
5+
.spago

examples/actions/README.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Counter Example
2+
3+
## Building
4+
5+
```
6+
npm install
7+
npm run build
8+
npm start
9+
```
10+
11+
This will compile the PureScript source files, bundle them, and use Browserify to combine PureScript and NPM sources into a single bundle.

examples/actions/html/index.html

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>react-basic example</title>
5+
</head>
6+
<body>
7+
<div id="container"></div>
8+
<script src="index.js"></script>
9+
</body>
10+
</html>

examples/actions/html/index.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
var { main } = require("../output/Main");
2+
3+
main();

0 commit comments

Comments
 (0)