forked from Scaffold-Stark/scaffold-stark-2
-
Notifications
You must be signed in to change notification settings - Fork 18
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
1 parent
67e321f
commit 7b33367
Showing
7 changed files
with
878 additions
and
29 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,32 @@ | ||
"use client"; | ||
|
||
import React, { useEffect, useState } from "react"; | ||
import ReactMarkdown from "react-markdown"; | ||
import { useParams } from "next/navigation"; | ||
|
||
const PageView: React.FC = () => { | ||
const { id } = useParams(); | ||
|
||
const [markdown, setMarkdown] = useState<string>(); | ||
|
||
useEffect(() => { | ||
const getMarkdown = async () => { | ||
const response = await fetch( | ||
`https://raw.githubusercontent.com/scaffold-eth/se-2-challenges/${id}/README.md`, | ||
); | ||
const markdownData = await response.text(); | ||
setMarkdown(markdownData); | ||
}; | ||
|
||
getMarkdown(); | ||
}, []); | ||
return ( | ||
<div className=" flex items-center w-full justify-center sm:text-[12px]"> | ||
<div className="max-w-[800px] py-20 sm:max-w-[400px] sm:py-5 sm:px-5 "> | ||
<ReactMarkdown>{markdown}</ReactMarkdown> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default PageView; |
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
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 |
---|---|---|
|
@@ -31,6 +31,7 @@ | |
"react-copy-to-clipboard": "^5.1.0", | ||
"react-dom": "^18", | ||
"react-hot-toast": "^2.4.1", | ||
"react-markdown": "^9.0.1", | ||
"starknet": "5.25.0", | ||
"starknet-dev": "npm:[email protected]", | ||
"type-fest": "^4.6.0", | ||
|
Oops, something went wrong.