Skip to content

Commit

Permalink
Introduce download all
Browse files Browse the repository at this point in the history
  • Loading branch information
lucemans committed Aug 22, 2024
1 parent f76054d commit 4d49aeb
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion web/src/routes/pack/$packId/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,15 @@ export const Route = createFileRoute('/pack/$packId/')({
</ul>
</div>
<div>
<button className="btn">Download All</button>
<button
className="btn"
onClick={() => {
// eslint-disable-next-line no-undef
alert('Not implemented yet!');
}}
>
Download All
</button>
</div>
</div>
</div>
Expand Down

0 comments on commit 4d49aeb

Please sign in to comment.