style: linting and formatting
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
interface ButtonProps {
|
||||
type ButtonProps = {
|
||||
label: string;
|
||||
onClick: () => void;
|
||||
}
|
||||
};
|
||||
|
||||
export const Button = ({ label, onClick }: ButtonProps) => (
|
||||
<button onClick={onClick} key={1} className="overflow-hidden rounded-md">
|
||||
|
||||
@@ -2,10 +2,10 @@ export const VerticalLayout = ({ children }: { children: React.ReactNode }) => {
|
||||
return (
|
||||
<div
|
||||
style={{
|
||||
display: 'flex',
|
||||
flexDirection: 'column',
|
||||
alignItems: 'center',
|
||||
gap: '16px',
|
||||
display: "flex",
|
||||
flexDirection: "column",
|
||||
alignItems: "center",
|
||||
gap: "16px",
|
||||
}}
|
||||
>
|
||||
{children}
|
||||
|
||||
Reference in New Issue
Block a user