라우팅 추가 및 CSS 구성
- 개인 블로그 - 로또 - 여행 로고 이미지 추가 및 변경
This commit is contained in:
367
src/pages/lotto/Functions.jsx
Normal file
367
src/pages/lotto/Functions.jsx
Normal file
@@ -0,0 +1,367 @@
|
||||
import React, { useEffect, useMemo, useState } from 'react';
|
||||
import { deleteHistory, getHistory, getLatest, recommend } from '../../api';
|
||||
|
||||
const fmtKST = (value) => value?.replace('T', ' ') ?? '';
|
||||
|
||||
const ballClass = (n) => {
|
||||
if (n <= 10) return 'lotto-ball range-a';
|
||||
if (n <= 20) return 'lotto-ball range-b';
|
||||
if (n <= 30) return 'lotto-ball range-c';
|
||||
if (n <= 40) return 'lotto-ball range-d';
|
||||
return 'lotto-ball range-e';
|
||||
};
|
||||
|
||||
const Ball = ({ n }) => <span className={ballClass(n)}>{n}</span>;
|
||||
|
||||
const NumberRow = ({ nums }) => (
|
||||
<div className="lotto-row">
|
||||
{nums.map((n) => (
|
||||
<Ball key={n} n={n} />
|
||||
))}
|
||||
</div>
|
||||
);
|
||||
|
||||
export default function Functions() {
|
||||
const [latest, setLatest] = useState(null);
|
||||
const [params, setParams] = useState({
|
||||
recent_window: 200,
|
||||
recent_weight: 2.0,
|
||||
avoid_recent_k: 5,
|
||||
});
|
||||
const presets = useMemo(
|
||||
() => [
|
||||
{ name: '기본', recent_window: 200, recent_weight: 2.0, avoid_recent_k: 5 },
|
||||
{ name: '최근 가중치↑', recent_window: 100, recent_weight: 3.0, avoid_recent_k: 10 },
|
||||
{ name: '안전(분산)', recent_window: 300, recent_weight: 1.6, avoid_recent_k: 8 },
|
||||
{ name: '공격(최근)', recent_window: 80, recent_weight: 3.5, avoid_recent_k: 12 },
|
||||
],
|
||||
[]
|
||||
);
|
||||
|
||||
const [result, setResult] = useState(null);
|
||||
const [history, setHistory] = useState([]);
|
||||
const [loading, setLoading] = useState({
|
||||
latest: false,
|
||||
recommend: false,
|
||||
history: false,
|
||||
});
|
||||
const [error, setError] = useState('');
|
||||
|
||||
const refreshLatest = async () => {
|
||||
setLoading((s) => ({ ...s, latest: true }));
|
||||
setError('');
|
||||
try {
|
||||
const data = await getLatest();
|
||||
setLatest(data);
|
||||
} catch (e) {
|
||||
setError(e?.message ?? String(e));
|
||||
} finally {
|
||||
setLoading((s) => ({ ...s, latest: false }));
|
||||
}
|
||||
};
|
||||
|
||||
const refreshHistory = async () => {
|
||||
setLoading((s) => ({ ...s, history: true }));
|
||||
setError('');
|
||||
try {
|
||||
const data = await getHistory(30);
|
||||
setHistory(data.items ?? []);
|
||||
} catch (e) {
|
||||
setError(e?.message ?? String(e));
|
||||
} finally {
|
||||
setLoading((s) => ({ ...s, history: false }));
|
||||
}
|
||||
};
|
||||
|
||||
const onRecommend = async () => {
|
||||
setLoading((s) => ({ ...s, recommend: true }));
|
||||
setError('');
|
||||
try {
|
||||
const data = await recommend(params);
|
||||
setResult(data);
|
||||
await refreshHistory();
|
||||
} catch (e) {
|
||||
setError(e?.message ?? String(e));
|
||||
} finally {
|
||||
setLoading((s) => ({ ...s, recommend: false }));
|
||||
}
|
||||
};
|
||||
|
||||
const onDelete = async (id) => {
|
||||
const ok = confirm(`히스토리 #${id}를 삭제할까요?`);
|
||||
if (!ok) return;
|
||||
|
||||
setError('');
|
||||
try {
|
||||
await deleteHistory(id);
|
||||
setHistory((prev) => prev.filter((item) => item.id !== id));
|
||||
} catch (e) {
|
||||
setError(e?.message ?? String(e));
|
||||
}
|
||||
};
|
||||
|
||||
const copyNumbers = async (nums) => {
|
||||
const text = nums.join(', ');
|
||||
try {
|
||||
await navigator.clipboard.writeText(text);
|
||||
alert(`복사 완료: ${text}`);
|
||||
} catch {
|
||||
prompt('복사해서 사용하세요:', text);
|
||||
}
|
||||
};
|
||||
|
||||
useEffect(() => {
|
||||
refreshLatest();
|
||||
refreshHistory();
|
||||
}, []);
|
||||
|
||||
return (
|
||||
<div className="lotto-functions">
|
||||
{error ? (
|
||||
<div className="lotto-alert">
|
||||
<div>
|
||||
<p className="lotto-alert__title">오류</p>
|
||||
<p className="lotto-alert__message">{error}</p>
|
||||
</div>
|
||||
<button className="button ghost small" onClick={() => setError('')}>
|
||||
닫기
|
||||
</button>
|
||||
</div>
|
||||
) : null}
|
||||
|
||||
<div className="lotto-grid">
|
||||
<section className="lotto-panel">
|
||||
<div className="lotto-panel__head">
|
||||
<div>
|
||||
<p className="lotto-panel__eyebrow">Latest Draw</p>
|
||||
<h3>최신 회차</h3>
|
||||
<p className="lotto-panel__sub">
|
||||
최신 회차와 번호를 빠르게 확인할 수 있습니다.
|
||||
</p>
|
||||
</div>
|
||||
<div className="lotto-panel__actions">
|
||||
{loading.latest ? <span className="lotto-chip">로딩 중</span> : null}
|
||||
<button
|
||||
className="button ghost small"
|
||||
onClick={refreshLatest}
|
||||
disabled={loading.latest}
|
||||
>
|
||||
새로고침
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{latest ? (
|
||||
<>
|
||||
<div className="lotto-meta">
|
||||
<div>
|
||||
<p className="lotto-meta__title">{latest.drawNo}회</p>
|
||||
<p className="lotto-meta__date">{latest.date}</p>
|
||||
</div>
|
||||
<button
|
||||
className="button small"
|
||||
onClick={() => copyNumbers(latest.numbers)}
|
||||
>
|
||||
번호 복사
|
||||
</button>
|
||||
</div>
|
||||
<NumberRow nums={latest.numbers} />
|
||||
<p className="lotto-bonus">
|
||||
보너스 <strong>{latest.bonus}</strong>
|
||||
</p>
|
||||
</>
|
||||
) : (
|
||||
<p className="lotto-empty">최신 회차 데이터가 없습니다.</p>
|
||||
)}
|
||||
</section>
|
||||
|
||||
<section className="lotto-panel">
|
||||
<div className="lotto-panel__head">
|
||||
<div>
|
||||
<p className="lotto-panel__eyebrow">Recommendation</p>
|
||||
<h3>추천 생성</h3>
|
||||
<p className="lotto-panel__sub">
|
||||
파라미터를 조정해 다른 추천 전략을 만들 수 있습니다.
|
||||
</p>
|
||||
</div>
|
||||
<div className="lotto-panel__actions">
|
||||
{loading.recommend ? <span className="lotto-chip">계산 중</span> : null}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="lotto-presets">
|
||||
{presets.map((preset) => (
|
||||
<button
|
||||
key={preset.name}
|
||||
className="button ghost small"
|
||||
onClick={() =>
|
||||
setParams({
|
||||
recent_window: preset.recent_window,
|
||||
recent_weight: preset.recent_weight,
|
||||
avoid_recent_k: preset.avoid_recent_k,
|
||||
})
|
||||
}
|
||||
>
|
||||
{preset.name}
|
||||
</button>
|
||||
))}
|
||||
</div>
|
||||
|
||||
<div className="lotto-form">
|
||||
<label className="lotto-field">
|
||||
recent_window
|
||||
<span>최근 N회차 가중치 범위</span>
|
||||
<input
|
||||
type="number"
|
||||
min={20}
|
||||
max={1000}
|
||||
value={params.recent_window}
|
||||
onChange={(e) =>
|
||||
setParams((s) => ({
|
||||
...s,
|
||||
recent_window: Number(e.target.value),
|
||||
}))
|
||||
}
|
||||
/>
|
||||
</label>
|
||||
|
||||
<label className="lotto-field">
|
||||
recent_weight
|
||||
<span>최근 회차 가중치</span>
|
||||
<input
|
||||
type="number"
|
||||
step="0.1"
|
||||
min={0.5}
|
||||
max={10}
|
||||
value={params.recent_weight}
|
||||
onChange={(e) =>
|
||||
setParams((s) => ({
|
||||
...s,
|
||||
recent_weight: Number(e.target.value),
|
||||
}))
|
||||
}
|
||||
/>
|
||||
</label>
|
||||
|
||||
<label className="lotto-field">
|
||||
avoid_recent_k
|
||||
<span>최근 K회차 중복 회피</span>
|
||||
<input
|
||||
type="number"
|
||||
min={0}
|
||||
max={50}
|
||||
value={params.avoid_recent_k}
|
||||
onChange={(e) =>
|
||||
setParams((s) => ({
|
||||
...s,
|
||||
avoid_recent_k: Number(e.target.value),
|
||||
}))
|
||||
}
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<button
|
||||
className="button primary"
|
||||
onClick={onRecommend}
|
||||
disabled={loading.recommend}
|
||||
>
|
||||
추천 받기
|
||||
</button>
|
||||
|
||||
{result ? (
|
||||
<div className="lotto-result">
|
||||
<div className="lotto-result__meta">
|
||||
<div>
|
||||
<p className="lotto-result__id">추천 ID #{result.id}</p>
|
||||
<p className="lotto-result__based">
|
||||
기준 회차 {result.based_on_latest_draw ?? '-'}
|
||||
</p>
|
||||
</div>
|
||||
<button
|
||||
className="button small"
|
||||
onClick={() => copyNumbers(result.numbers)}
|
||||
>
|
||||
번호 복사
|
||||
</button>
|
||||
</div>
|
||||
<NumberRow nums={result.numbers} />
|
||||
<details className="lotto-details">
|
||||
<summary>설명 보기</summary>
|
||||
<pre>{JSON.stringify(result.explain, null, 2)}</pre>
|
||||
</details>
|
||||
</div>
|
||||
) : (
|
||||
<p className="lotto-empty">아직 추천 결과가 없습니다.</p>
|
||||
)}
|
||||
</section>
|
||||
</div>
|
||||
|
||||
<section className="lotto-panel">
|
||||
<div className="lotto-panel__head">
|
||||
<div>
|
||||
<p className="lotto-panel__eyebrow">History</p>
|
||||
<h3>추천 히스토리</h3>
|
||||
<p className="lotto-panel__sub">
|
||||
최근 추천 결과를 모아서 확인할 수 있습니다.
|
||||
</p>
|
||||
</div>
|
||||
<div className="lotto-panel__actions">
|
||||
<span className="lotto-chip">{history.length}건</span>
|
||||
<button
|
||||
className="button ghost small"
|
||||
onClick={refreshHistory}
|
||||
disabled={loading.history}
|
||||
>
|
||||
새로고침
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{loading.history ? <p className="lotto-empty">불러오는 중...</p> : null}
|
||||
|
||||
{history.length === 0 ? (
|
||||
<p className="lotto-empty">저장된 히스토리가 없습니다.</p>
|
||||
) : (
|
||||
<div className="lotto-history">
|
||||
{history.map((item) => (
|
||||
<div key={item.id} className="lotto-history__item">
|
||||
<div className="lotto-history__meta">
|
||||
<p>#{item.id}</p>
|
||||
<p>{fmtKST(item.created_at)}</p>
|
||||
<p>기준 회차 {item.based_on_draw ?? '-'}</p>
|
||||
</div>
|
||||
<div className="lotto-history__body">
|
||||
<NumberRow nums={item.numbers} />
|
||||
<p className="lotto-history__params">
|
||||
window={item.params?.recent_window}, weight=
|
||||
{item.params?.recent_weight}, avoid_k=
|
||||
{item.params?.avoid_recent_k}
|
||||
</p>
|
||||
</div>
|
||||
<div className="lotto-history__actions">
|
||||
<button
|
||||
className="button ghost small"
|
||||
onClick={() => copyNumbers(item.numbers)}
|
||||
>
|
||||
복사
|
||||
</button>
|
||||
<button
|
||||
className="button danger small"
|
||||
onClick={() => onDelete(item.id)}
|
||||
>
|
||||
삭제
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
)}
|
||||
</section>
|
||||
|
||||
<footer className="lotto-foot">
|
||||
backend: FastAPI / nginx proxy / DB: sqlite
|
||||
</footer>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
339
src/pages/lotto/Lotto.css
Normal file
339
src/pages/lotto/Lotto.css
Normal file
@@ -0,0 +1,339 @@
|
||||
.lotto {
|
||||
display: grid;
|
||||
gap: 24px;
|
||||
}
|
||||
|
||||
.lotto-header {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
|
||||
gap: 22px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.lotto-kicker {
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.3em;
|
||||
font-size: 12px;
|
||||
color: var(--accent);
|
||||
margin: 0 0 10px;
|
||||
}
|
||||
|
||||
.lotto-header h1 {
|
||||
margin: 0 0 12px;
|
||||
font-family: var(--font-display);
|
||||
font-size: clamp(30px, 4vw, 40px);
|
||||
}
|
||||
|
||||
.lotto-sub {
|
||||
margin: 0;
|
||||
color: var(--muted);
|
||||
}
|
||||
|
||||
.lotto-card {
|
||||
border: 1px solid var(--line);
|
||||
border-radius: 20px;
|
||||
padding: 20px;
|
||||
background: var(--surface);
|
||||
}
|
||||
|
||||
.lotto-card__title {
|
||||
margin: 0 0 12px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.lotto-card ul {
|
||||
margin: 0;
|
||||
padding-left: 18px;
|
||||
color: var(--muted);
|
||||
display: grid;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.lotto-functions {
|
||||
display: grid;
|
||||
gap: 24px;
|
||||
}
|
||||
|
||||
.lotto-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
||||
gap: 18px;
|
||||
}
|
||||
|
||||
.lotto-panel {
|
||||
border: 1px solid var(--line);
|
||||
background: var(--surface);
|
||||
border-radius: 24px;
|
||||
padding: 20px;
|
||||
display: grid;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.lotto-panel__head {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: flex-start;
|
||||
gap: 12px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.lotto-panel__eyebrow {
|
||||
margin: 0 0 6px;
|
||||
font-size: 11px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.22em;
|
||||
color: var(--accent);
|
||||
}
|
||||
|
||||
.lotto-panel__sub {
|
||||
margin: 6px 0 0;
|
||||
color: var(--muted);
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.lotto-panel__actions {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.lotto-chip {
|
||||
font-size: 11px;
|
||||
padding: 6px 10px;
|
||||
border-radius: 999px;
|
||||
border: 1px solid var(--line);
|
||||
color: var(--muted);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.12em;
|
||||
}
|
||||
|
||||
.lotto-row {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.lotto-ball {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
border-radius: 999px;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
font-weight: 600;
|
||||
border: 1px solid rgba(255, 255, 255, 0.16);
|
||||
background: rgba(255, 255, 255, 0.06);
|
||||
}
|
||||
|
||||
.lotto-ball.range-a {
|
||||
background: rgba(247, 168, 165, 0.22);
|
||||
}
|
||||
|
||||
.lotto-ball.range-b {
|
||||
background: rgba(253, 212, 177, 0.22);
|
||||
}
|
||||
|
||||
.lotto-ball.range-c {
|
||||
background: rgba(151, 201, 170, 0.22);
|
||||
}
|
||||
|
||||
.lotto-ball.range-d {
|
||||
background: rgba(133, 165, 216, 0.22);
|
||||
}
|
||||
|
||||
.lotto-ball.range-e {
|
||||
background: rgba(196, 170, 220, 0.22);
|
||||
}
|
||||
|
||||
.lotto-meta {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.lotto-meta__title {
|
||||
margin: 0;
|
||||
font-weight: 600;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.lotto-meta__date {
|
||||
margin: 6px 0 0;
|
||||
color: var(--muted);
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.lotto-bonus {
|
||||
margin: 0;
|
||||
color: var(--muted);
|
||||
}
|
||||
|
||||
.lotto-presets {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.lotto-form {
|
||||
display: grid;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.lotto-field {
|
||||
display: grid;
|
||||
gap: 6px;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.lotto-field span {
|
||||
color: var(--muted);
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.lotto-field input {
|
||||
border: 1px solid var(--line);
|
||||
background: rgba(0, 0, 0, 0.25);
|
||||
color: var(--text);
|
||||
border-radius: 12px;
|
||||
padding: 10px 12px;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.lotto-field input:focus {
|
||||
border-color: rgba(247, 168, 165, 0.6);
|
||||
}
|
||||
|
||||
.lotto-result {
|
||||
border-top: 1px solid var(--line);
|
||||
padding-top: 16px;
|
||||
display: grid;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.lotto-result__meta {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.lotto-result__id {
|
||||
margin: 0;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.lotto-result__based {
|
||||
margin: 4px 0 0;
|
||||
color: var(--muted);
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.lotto-details summary {
|
||||
cursor: pointer;
|
||||
color: var(--muted);
|
||||
}
|
||||
|
||||
.lotto-details pre {
|
||||
background: rgba(0, 0, 0, 0.4);
|
||||
border-radius: 12px;
|
||||
padding: 12px;
|
||||
font-size: 12px;
|
||||
overflow-x: auto;
|
||||
border: 1px solid var(--line);
|
||||
}
|
||||
|
||||
.lotto-empty {
|
||||
margin: 0;
|
||||
color: var(--muted);
|
||||
}
|
||||
|
||||
.lotto-alert {
|
||||
border: 1px solid rgba(247, 116, 125, 0.4);
|
||||
background: rgba(247, 116, 125, 0.12);
|
||||
border-radius: 18px;
|
||||
padding: 16px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
gap: 12px;
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
.lotto-alert__title {
|
||||
margin: 0 0 6px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.lotto-alert__message {
|
||||
margin: 0;
|
||||
color: var(--muted);
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.lotto-history {
|
||||
display: grid;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.lotto-history__item {
|
||||
border: 1px solid var(--line);
|
||||
border-radius: 18px;
|
||||
padding: 16px;
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.4fr) minmax(0, 0.2fr);
|
||||
gap: 14px;
|
||||
background: rgba(255, 255, 255, 0.02);
|
||||
}
|
||||
|
||||
.lotto-history__meta {
|
||||
color: var(--muted);
|
||||
font-size: 12px;
|
||||
display: grid;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.lotto-history__body {
|
||||
display: grid;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.lotto-history__params {
|
||||
margin: 0;
|
||||
color: var(--muted);
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.lotto-history__actions {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 8px;
|
||||
align-items: stretch;
|
||||
}
|
||||
|
||||
.lotto-foot {
|
||||
text-align: center;
|
||||
color: var(--muted);
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.button.small {
|
||||
padding: 8px 12px;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.button.danger {
|
||||
border-color: rgba(247, 116, 125, 0.5);
|
||||
color: #fbc4c8;
|
||||
background: rgba(247, 116, 125, 0.15);
|
||||
}
|
||||
|
||||
@media (max-width: 900px) {
|
||||
.lotto-header {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.lotto-history__item {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
32
src/pages/lotto/Lotto.jsx
Normal file
32
src/pages/lotto/Lotto.jsx
Normal file
@@ -0,0 +1,32 @@
|
||||
import React from 'react';
|
||||
import Functions from './Functions';
|
||||
import './Lotto.css';
|
||||
|
||||
const Lotto = () => {
|
||||
return (
|
||||
<div className="lotto">
|
||||
<header className="lotto-header">
|
||||
<div>
|
||||
<p className="lotto-kicker">Playground</p>
|
||||
<h1>Lotto Lab</h1>
|
||||
<p className="lotto-sub">
|
||||
기존 로또 추천 기능을 그대로 유지하면서 새로운 블로그 스타일에 맞게
|
||||
레이아웃을 정리했습니다.
|
||||
</p>
|
||||
</div>
|
||||
<div className="lotto-card">
|
||||
<p className="lotto-card__title">다음 업데이트 아이디어</p>
|
||||
<ul>
|
||||
<li>로또 기록을 캘린더 형태로 정리</li>
|
||||
<li>자주 등장하는 번호 조합 분석</li>
|
||||
<li>그래프로 추첨 추세 확인</li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<Functions />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default Lotto;
|
||||
Reference in New Issue
Block a user