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 phoenix_reactify.ex
Raw

lib/phoenix_reactify.ex

defmodule PhoenixReactify do
@moduledoc """
Documentation for `PhoenixReactify`.
"""
@doc """
Hello world.
## Examples
iex> PhoenixReactify.hello()
:world
"""
def hello do
:world
end
end