blob: dc83a089c8bde772c5b058ca6498b47da462f9ae [file] [log] [blame]
/**
*
*/
package wicket.examples.ajax.builtin.modal;
import wicket.markup.html.panel.Panel;
/**
* @author Matej Knopp
*/
public class ModalPanel1 extends Panel {
/**
* @param id
*/
public ModalPanel1(String id) {
super(id);
}
}