-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
37 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import React from "react"; | ||
import { useParams } from "react-router-dom"; | ||
|
||
const DetalhesParticipantes = () => { | ||
const { trilhaId } = useParams(); | ||
|
||
// Lógica para buscar os participantes da trilha usando o ID da trilha | ||
// Substitua esta lógica pela lógica real de obtenção de dados do banco de dados | ||
|
||
return ( | ||
<div> | ||
<h1>Detalhes dos Participantes da Trilha {trilhaId}</h1> | ||
{/* Renderize os detalhes dos participantes aqui */} | ||
</div> | ||
); | ||
}; | ||
|
||
export default DetalhesParticipantes; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters