23 lines
613 B
TypeScript
23 lines
613 B
TypeScript
"use client";
|
|
|
|
import { Breadcrumbs } from "@/components/layout/breadcrumbs";
|
|
import { DecimalOrderExplorer } from "@/components/explorers/decimal-order-explorer";
|
|
|
|
export default function CompareOrderPage() {
|
|
return (
|
|
<div className="space-y-8">
|
|
<Breadcrumbs
|
|
items={[
|
|
{ label: "Lessons", href: "/lessons" },
|
|
{ label: "Unit 2: Decimals", href: "/lessons/unit-2-decimals" },
|
|
{ label: "Compare & Order" },
|
|
]}
|
|
/>
|
|
|
|
<h1 className="text-3xl font-bold tracking-tight">Compare and Order Decimals</h1>
|
|
|
|
<DecimalOrderExplorer />
|
|
</div>
|
|
);
|
|
}
|