nyipyatki/frontend/src/components/SecretSanta.tsx
2025-11-02 22:13:21 +02:00

19 lines
830 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import CenteredContainer from "./ChildrenContainer";
function SecretSanta() {
return (
<>
<CenteredContainer>
<h2>Secret Santa</h2>
<p className="mainText">
Тут вы сможете узнать кому вы дарите свой подарок, а так же увидеть его вишлист, если он его добавит. Вы тоже сможете добавить свой вишлист, если захотите, чтобы ваш санта его видел!
<br/><br/>
Таблица в производстве... Ожидайте к <b>середине-концу ноября</b>
</p>
</CenteredContainer>
</>
)
}
export default SecretSanta;