import React, { useContext, useState, useEffect } from "react";
import SampPage from '../samp/SampPage';

// TODO: this is not hooked up to the database yet as a catalog
export default function SampResults({ catalog }) {
    return <SampPage/>
}