* UI work - WIP scrollable area * Add translations - refactor some components * Add installed text * Disable if there is no currently installed * Extract loader * Fix conditional * Fix E2E * fix typo
10 lines
243 B
TypeScript
10 lines
243 B
TypeScript
const StepCard: React.FC<{ children: React.ReactNode }> = (props) => {
|
|
return (
|
|
<div className="border-subtle bg-default mt-10 rounded-md border p-4 dark:bg-black sm:p-8">
|
|
{props.children}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export { StepCard };
|