import javax.swing.JFrame; /** * Write a description of class TicTacToeBoardViewer here. * * @author (your name) * @version (a version number or a date) */ public class TicTacToeBoardViewer { public static void main(String[] args) { JFrame frame = new JFrame(); frame.setSize(500, 500); frame.setTitle("Scott\'s tic-tac-toe board"); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); TicTacToeBoardComponent board = new TicTacToeBoardComponent(); frame.add(board); frame.setVisible(true); } }