Files
reservationsystem/src/main/java/lodge/TestMainFx.java

24 lines
584 B
Java
Raw Normal View History

2025-10-01 14:42:41 -04:00
package lodge;
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.stage.Stage;
import javafx.scene.control.Label;
import javafx.scene.layout.StackPane;
public class TestMainFx extends Application{
@Override
public void start(Stage primaryStage) {
primaryStage.setTitle("Lodge ReservationSystem");
Scene scene = new Scene(new StackPane(new Label("Hello World!")), 800, 600);
primaryStage.setScene(scene);
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}