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