This commit is contained in:
amirhouieh 2023-09-06 11:12:52 +02:00
parent ce6af994ea
commit 4ec9d0ed84
1 changed files with 4 additions and 1 deletions

View File

@ -6,6 +6,9 @@ import EpisodeBlocks from './Episode.Blocks'
const EpisodeTranscript = ({ episode }: { episode: LPE.Podcast.Document }) => {
return (
<Container>
<Title variant={'h5'} genericFontFamily={'serif'}>
Timestamps
</Title>
<EpisodeBlocks data={episode} />
</Container>
)
@ -15,7 +18,7 @@ const Container = styled.div`
margin-top: 32px;
`
const Title = styled(Typography)`
margin-bottom: 8px;
margin-bottom: 32px;
`
export default EpisodeTranscript