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