({ topic, title, subText, children })
| 62 | `; |
| 63 | |
| 64 | const TextBlock = ({ topic, title, subText, children }) => { |
| 65 | return ( |
| 66 | <Lb id="leftBlock"> |
| 67 | <Topic> |
| 68 | <Circle /> |
| 69 | <span>{topic}</span> |
| 70 | </Topic> |
| 71 | <Title>{title}</Title> |
| 72 | <SubText>{subText}</SubText> |
| 73 | {children} |
| 74 | </Lb> |
| 75 | ); |
| 76 | }; |
| 77 | |
| 78 | export default TextBlock; |
nothing calls this directly
no outgoing calls
no test coverage detected