Skip to content

Commit

Permalink
Started Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
rommsen committed Apr 6, 2018
1 parent d0d3410 commit c7b701a
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,17 @@
# fable-of-the-day
Catch of the day by @wesbos ported to Fable

This is a F#/Fable port of the Catch of the day application used in @wesbos' [awesome course to learn React](https://reactforbeginners.com/).

Here you can find a video of the application: https://reactforbeginners.com/images/using.mp4

The running application itself can be found here: https://fable-of-the-day.firebaseapp.com

It showcases how to do different things in Fable/Fable-React:

* Building React Components with Fable:
* Including external JS:
* Including React-Components written in JS:
* Using LocalStorage with Fable.PowerPack:
* Working with promises:
* Using Firebase (created with ts2fable):
* Using Re-Base:
2 changes: 1 addition & 1 deletion src/fable/Order.fs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ type Order(initialProps) as this =
str <| formatPrice price
button
[ OnClick (fun _ -> this.props.RemoveFromOrder key) ]
[ str "&times;" ]
[ str "x" ]
]

cssTransition (transitionOptions "order" key)
Expand Down

0 comments on commit c7b701a

Please sign in to comment.