module Phlex

def configuration

def configuration
	@configuration ||= Configuration.new
end

def configure

def configure
	yield configuration
end

def const_missing(name)

def const_missing(name)
	if name == :Component
		raise NameError, "👋 Phlex::Component is now Phlex::View"
	else
		super
	end
end