diff --git a/examples/todomvc/todomvc.html b/examples/todomvc/todomvc.html index 51503c8..6f09b0a 100644 --- a/examples/todomvc/todomvc.html +++ b/examples/todomvc/todomvc.html @@ -4,7 +4,6 @@ todomvc with reagent -

This will become todomvc when the ClojureScript is compiled

diff --git a/examples/todomvc/todosanim.css b/examples/todomvc/todosanim.css deleted file mode 100644 index 8a39d57..0000000 --- a/examples/todomvc/todosanim.css +++ /dev/null @@ -1,18 +0,0 @@ - -.todoitem-enter { - opacity: 0.1; - transition: opacity .2s ease-in; -} - -.todoitem-enter.todoitem-enter-active { - opacity: 1; -} - -.todoitem-leave { - opacity: 0.8; - transition: opacity 0.2s ease-out; -} - -.todoitem-leave.todoitem-leave-active { - opacity: 0.1; -}