Conditions | 1 |
Total Lines | 11 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import React from "react" |
||
7 | |||
8 | export default function ThirdParty({ |
||
9 | containerClassName = "third-container", |
||
10 | itemClassName = "third-item" |
||
11 | }: ThirdPartyProps) { |
||
12 | return <> |
||
13 | { "/// node_modules/third_party_component" } |
||
14 | <div className={containerClassName}> |
||
15 | <div className={itemClassName}>third-item</div> |
||
16 | </div> |
||
17 | </> |
||
18 | } |