package framework;

import javax.swing.JComponent;

/**
 * A class that creates GUI components for solving search problems.
 * @author Your Name Here
 */
public class GUI extends JComponent {
    
    public GUI(Problem problem) {

        // You must write

    }
    
    // private methods and instance fields go here
    
}