Initial commit

This commit is contained in:
2024-05-21 18:53:55 +02:00
commit dd0aed8d06
9 changed files with 251 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package iesthiar;
import java.io.IOException;
import javafx.fxml.FXML;
public class PrimaryController {
@FXML
private void switchToSecondary() throws IOException {
App.setRoot("secondary");
}
}