Checkpoint

This commit is contained in:
Antonio Scandurra 2023-10-21 16:01:47 +02:00
parent f3979a9f28
commit e4fe9538d7
107 changed files with 81 additions and 81 deletions

View file

@ -9,7 +9,7 @@ mod themes;
use std::sync::Arc;
use clap::Parser;
use gpui3::{
use gpui2::{
div, px, size, view, AnyView, BorrowAppContext, Bounds, Context, Element, ViewContext,
WindowBounds, WindowOptions,
};
@ -53,7 +53,7 @@ fn main() {
let theme = themes::load_theme(theme_name).unwrap();
let asset_source = Arc::new(Assets);
gpui3::App::production(asset_source).run(move |cx| {
gpui2::App::production(asset_source).run(move |cx| {
let selector =
story_selector.unwrap_or(StorySelector::Component(ComponentStory::Workspace));