← back to Watches

src/components/PriceHistoryPage.jsx

13 lines

import React from 'react';
import OmegaPriceHistoryChart from './OmegaPriceHistoryChart';

function PriceHistoryPage() {
  return (
    <div className="min-h-screen bg-gray-100">
      <OmegaPriceHistoryChart />
    </div>
  );
}

export default PriceHistoryPage;