Initial Commit
This commit is contained in:
22
app/lessons/unit-2-decimals/compare-order/page.tsx
Normal file
22
app/lessons/unit-2-decimals/compare-order/page.tsx
Normal file
@@ -0,0 +1,22 @@
|
||||
"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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user