mirror of
https://github.com/dathere/ckan-devstaller.git
synced 2025-11-09 21:39:49 +00:00
9 lines
276 B
TypeScript
9 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>;
|
|
}
|