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 deps makeup lib makeup application.ex
Raw

deps/makeup/lib/makeup/application.ex

defmodule Makeup.Application do
use Application
alias Makeup.Registry
def start(_type, _args) do
Registry.create_name_registry()
Registry.create_extension_registry()
Supervisor.start_link([], strategy: :one_for_one)
end
end