src/components/PriceHistoryPage.jsx
import React from 'react';
import OmegaPriceHistoryChart from './OmegaPriceHistoryChart';
function PriceHistoryPage() {
return (
<div className="min-h-screen bg-gray-100">
<OmegaPriceHistoryChart />
</div>
);
}
export default PriceHistoryPage;