()
| 24 | } |
| 25 | |
| 26 | const HowItWorks = () => { |
| 27 | return ( |
| 28 | <> |
| 29 | <h3>Here's how it works:</h3> |
| 30 | <video autoPlay loop muted style={{ maxHeight: "400px" }}> |
| 31 | <source src="preview.mp4" type="video/mp4" /> |
| 32 | </video> |
| 33 | </> |
| 34 | ); |
| 35 | }; |
| 36 | |
| 37 | export const KeyInsight = () => { |
| 38 | const [url, setUrl] = useState<string>(""); |
nothing calls this directly
no outgoing calls
no test coverage detected