Packages

Phoenix Reactify is an open-source tool meant to add a simple React implementation to fresh Phoenix Applications.

Current section

Files

Jump to
phoenix_reactify lib task.ex
Raw

lib/task.ex

defmodule Mix.Tasks.Phx.Reactify do
@shortdoc """
Reactify your Phoenix Project
"""
use Mix.Task
def run(args \\ []) do
PhoenixReactify.main(args)
end
end