# frozen_string_literal: true module Junction module Screens class Main < Screen def render prompt.say('Welcome to the Junction CLI!') prompt.say('Please select an option:') prompt.select('Options:') do |menu| menu.choice 'Create a new project', -> { create_project } menu.choice 'Exit', -> { exit } end end end end end