{
diff --git a/src/pages/TrackPage/index.tsx b/src/pages/TrackPage/index.tsx
index 1cdf944..ef2208c 100644
--- a/src/pages/TrackPage/index.tsx
+++ b/src/pages/TrackPage/index.tsx
@@ -5,6 +5,7 @@ import {useParams} from 'react-router-dom'
import {concat, combineLatest, of, from, Subject} from 'rxjs'
import {pluck, distinctUntilChanged, map, switchMap, startWith, sample} from 'rxjs/operators'
import {useObservable} from 'rxjs-hooks'
+import Markdown from 'react-markdown'
import api from 'api'
import {Page} from 'components'
@@ -106,6 +107,11 @@ const TrackPage = connect((state) => ({login: state.login}))(function TrackPage(
+ {track?.description &&
+
+ {track.description}
+ }
+
{/* {JSON.stringify(data, null, 2)}
*/}