23 lines
623 B
TypeScript
23 lines
623 B
TypeScript
"use client";
|
|
|
|
import { Breadcrumbs } from "@/components/layout/breadcrumbs";
|
|
import { RatioExplorer } from "@/components/explorers/ratio-explorer";
|
|
|
|
export default function SimplifyRatiosPage() {
|
|
return (
|
|
<div className="space-y-8">
|
|
<Breadcrumbs
|
|
items={[
|
|
{ label: "Lessons", href: "/lessons" },
|
|
{ label: "Unit 4: Ratio & Proportion", href: "/lessons/unit-4-ratio-proportion" },
|
|
{ label: "Simplify Ratios" },
|
|
]}
|
|
/>
|
|
|
|
<h1 className="text-3xl font-bold tracking-tight">Simplify Ratios</h1>
|
|
|
|
<RatioExplorer initialMode="simplify" />
|
|
</div>
|
|
);
|
|
}
|