Skip to content

Latest commit

 

History

History
45 lines (27 loc) · 1.64 KB

readme.md

File metadata and controls

45 lines (27 loc) · 1.64 KB

Reagent TodoMVC Example

Reagent provides a minimalistic interface between ClojureScript and React. It allows you to define efficient React components using nothing but plain ClojureScript functions and data, that describe your UI using a Hiccup-like syntax.

Reagent - https://github.com/reagent-project/reagent

Learning Reagent

The Reagent website is a great resource for getting started.

Here are some links you may find helpful:

Get help from other reagent users:

Components Summary

The following is a summary of the components directory.

Components overview

Running

Compile the clojurescript files.

$ lein cljsbuild once

Note: to compile an optimized version, run lein clean followed by lein with-profile prod cljsbuild once

Open index.html to view the example application.

Credit

Matthew Jaoudi, Dmitri Sotnikov, and Dan Holmsand