Components
Loading preview...
A crypto trading chart visually displays the price movements of cryptocurrencies over time. It includes tools like candlesticks, volume indicators, and trend lines to help traders analyze market behavior, identify patterns, and make informed trading decisions.
@namanbansal580
npx shadcn@latest add https://21st.dev/r/namanbansal580/crypto-market-chartimport CryptoMarketChart from "@/components/ui/crypto-market-chart";
const DemoOne = () => {
return (
<div className="flex w-full h-screen justify-center items-center mt-[20vh]">
<CryptoMarketChart />
</div>
);
};
export { DemoOne };