Skip to content

Commit

Permalink
ZTRI-64 #in-progress #time 30m #comment Render markdown for WorkShopC…
Browse files Browse the repository at this point in the history
…ontent component

Co-authored-by: jamesj-0 <[email protected]>
  • Loading branch information
Joepock123 and jamesj-0 committed Jun 16, 2020
1 parent 8da384b commit e76c27f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Pages/WorkshopContent/WorkshopContent.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useEffect } from 'react';
import PropTypes from 'prop-types';
// import styled from 'styled-components';
// import Markdown from 'markdown-to-jsx';

import * as SC from './style';

Expand Down Expand Up @@ -36,7 +36,7 @@ export default function WorkshopContent({ match: { params } }) {
<>
<WorkshopHeader images={workshop.images} date={workshop.date_created} tags={workshop.tags} title={workshop.title} />
<SC.MainContainer>
<h1>CONTENT</h1>
{/* <Markdown>{workshop.content}</Markdown> */}
<p>{workshop.content}</p>
<SC.ButtonsWrapper>
<BackButton />
Expand Down

0 comments on commit e76c27f

Please sign in to comment.