package addBk.address;

import java.awt.*;

public class DialPanel extends Panel {
  Button b0 = new Button("dial");
  Button b1 = new Button("dial");
  Button b2 = new Button("dial");

  DialPanel() {
    setLayout(
        new GridLayout(0, 1));
    add(b0);
    add(b1);
    add(b2);
  }
}