File tree 1 file changed +3
-1
lines changed
src/components/Card/Stacked
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ export const StackedOverlapFull = (props) => (
56
56
< a href = "#blog-detail" > { props . title } </ a >
57
57
</ h4 >
58
58
</ header >
59
+ < div className = "card__text" > { props . text } </ div >
59
60
< footer className = "card__footer" >
60
61
< div className = "card__date" >
61
62
< Moment fromNow > { props . date } </ Moment >
@@ -66,12 +67,13 @@ export const StackedOverlapFull = (props) => (
66
67
)
67
68
68
69
export const StackedOverlapFullList = ( props ) => (
69
- < Section title = "Overlap" cssClasses = "l-cards--stacked-overlap-full" >
70
+ < Section title = "Overlap Full " cssClasses = "l-cards--stacked-overlap-full" >
70
71
{ BlogData . slice ( 0 , 1 ) . map ( ( post ) => (
71
72
< StackedOverlapFull
72
73
key = { post . id }
73
74
id = { post . id }
74
75
title = { post . title }
76
+ text = { post . text }
75
77
date = { post . date }
76
78
/>
77
79
) ) }
You can’t perform that action at this time.
0 commit comments