class TasksController < ApplicationController
  before_filter :require_login

  layout false
  def show
    render file: 'public/react/build/index.html', :layout => false
  end
end