top of page
A Teladoc.png

Expert Review of Your Results

 

Once your results are ready, you’ll have the opportunity to review them with a licensed physician through a secure telehealth consultation. The physician will walk you through your personalized report, explain how your genetics may impact medication response, and answer any questions you may have. If appropriate, and based on clinical judgment, the physician may recommend and prescribe medication options informed by your results, helping guide safer and more effective treatment decisions.

© 2035 by Powered by Prescription Match, inc. 

bottom of page
import React, { useState, useEffect } from 'react'; function TestStatus() { const [status, setStatus] = useState("Awaiting test return"); useEffect(() => { // Fetch status from the backend (for example, /get_test_status) fetch('/get_test_status') .then(response => response.json()) .then(data => setStatus(data.status)); }, []); return (

Test Status: {status}

{status === "Received" && ( )}
); function handleWatchInstructions() { // Redirect to instructional video window.location.href = 'https://example.com/instructions'; } } export default TestStatus;