top of page
A vertical Buccal Swab.png

Fast & Simple Testing from Home

 

Getting started with the PrescriptionMatch PGx Test is quick and easy. Once you purchase your test, it will be delivered directly to your home with everything you need included. Simply follow the step-by-step instructions to gently swab the inside of each cheek, it only takes a minute. Then place the swab in the provided self-addressed, prepaid envelope and mail it back to our lab. Once your sample is received and processed, your personalized results will be ready shortly, giving you clear insights to help guide your medication 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;