mirror of
https://github.com/status-im/status-react.git
synced 2025-01-09 18:46:19 +00:00
55d72b534a
Signed-off-by: yevh-berdnyk <ie.berdnyk@gmail.com>
18 lines
393 B
Python
18 lines
393 B
Python
import os
|
|
|
|
from views.base_element import BaseElement
|
|
|
|
IMAGES_PATH = os.path.join(os.path.dirname(__file__), 'images/base_view')
|
|
|
|
|
|
class HomeButton(BaseElement):
|
|
def __init__(self):
|
|
super(HomeButton, self).__init__(IMAGES_PATH + '/home_button.png')
|
|
|
|
|
|
class BaseView(object):
|
|
|
|
def __init__(self):
|
|
super(BaseView, self).__init__()
|
|
self.home_button = HomeButton()
|