import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Label;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;

/**
 * Created by jccharr on 01/05/2020.
 */
public class Appli extends Application{

    public static void main(String[] args) {
        launch(args);
    }

    @Override
    public void start(Stage primaryStage) throws Exception {
        Model model = new Model();
        View view=new View(model);
        ControlButton controlButton = new ControlButton(model, view);
        ControlText controlText = new ControlText(model, view);
        view.display();
    }
}