23 lines
639 B
TypeScript
23 lines
639 B
TypeScript
"use client";
|
|
|
|
import { Breadcrumbs } from "@/components/layout/breadcrumbs";
|
|
import { NumberLawsExplorer } from "@/components/explorers/number-laws-explorer";
|
|
|
|
export default function NumberLawsPage() {
|
|
return (
|
|
<div className="space-y-8">
|
|
<Breadcrumbs
|
|
items={[
|
|
{ label: "Lessons", href: "/lessons" },
|
|
{ label: "Unit 8: Number Properties", href: "/lessons/unit-8-number-properties" },
|
|
{ label: "Number Laws" },
|
|
]}
|
|
/>
|
|
|
|
<h1 className="text-3xl font-bold tracking-tight">Commutative, Associative and Distributive Laws</h1>
|
|
|
|
<NumberLawsExplorer />
|
|
</div>
|
|
);
|
|
}
|