(react) add fullWidth props to Button

Can be useful in many situations.
This commit is contained in:
Nathan Vasse
2023-05-25 15:41:07 +02:00
committed by NathanVss
parent d767d61dd2
commit 30d08a956b
6 changed files with 67 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import { Meta } from "@storybook/react";
export default {
title: "Components/Forms/Examples",
} as Meta;
export const Login = () => {
return <div>DOUDOU</div>;
};