21 lines
444 B
Python
21 lines
444 B
Python
from __future__ import annotations
|
|
|
|
from typing import * # type: ignore
|
|
|
|
import rio
|
|
from from_root import from_root
|
|
|
|
from .page_builder import build_page
|
|
from .. import components as comps
|
|
|
|
|
|
class Imprint(rio.Component):
|
|
def build(self) -> rio.Component:
|
|
return build_page(rio.Column(
|
|
comps.NewsPost(
|
|
header="Impressum",
|
|
article_text="",
|
|
date=""
|
|
)
|
|
))
|