From 2cc8e9d7fc4085411f919b4cffa3a864e676fa0c Mon Sep 17 00:00:00 2001 From: Michael Fatemi Date: Sun, 29 Nov 2020 01:45:12 -0500 Subject: [PATCH] Added short summaries to articles --- src/components/ArticleRow.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/ArticleRow.tsx b/src/components/ArticleRow.tsx index e17b1c5..801cea9 100644 --- a/src/components/ArticleRow.tsx +++ b/src/components/ArticleRow.tsx @@ -2,7 +2,7 @@ import React from 'react'; import imageUrl from '../imageUrl'; import BlockContent from '@sanity/block-content-to-react'; import { Link } from 'react-router-dom'; -import "../css/article.css"; +import '../css/article.css'; export default function ArticleRow({ article, @@ -36,7 +36,7 @@ export default function ArticleRow({
{article.author || 'No author'}
- +

{article.summary}

);