
from Gui import *

class Table(Gui):
    def setup(self):
        self.canvas = self.ca(width=300)
        self.photo = PhotoImage(file='danger.gif')
        self.canvas.create_image([150,50], image=self.photo)

table = Table()
table.setup()
table.mainloop()
    
