mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-30 21:01:54 +08:00
Co-authored-by: Konsti Wohlwend <n2d4xc@gmail.com> Co-authored-by: Madison Kennedy <madison@Madisons-MacBook-Pro.local> Co-authored-by: BilalG1 <bg2002@gmail.com>
10 lines
276 B
TypeScript
10 lines
276 B
TypeScript
import type { ReactNode } from 'react';
|
|
|
|
export function Steps({ children }: { children: ReactNode }) {
|
|
return <div className="fd-steps">{children}</div>;
|
|
}
|
|
|
|
export function Step({ children }: { children: ReactNode }) {
|
|
return <div className="fd-step">{children}</div>;
|
|
}
|