Skip to content

Instantly share code, notes, and snippets.

@tidusia
Last active June 20, 2023 07:52
Show Gist options
  • Save tidusia/ed4c68b073e7477850352c5d1cacb25e to your computer and use it in GitHub Desktop.
Save tidusia/ed4c68b073e7477850352c5d1cacb25e to your computer and use it in GitHub Desktop.
import React from "react";
import clsx from "clsx";
type Props = {
className?: string;
};
export default function MyComponent({ className }: Props): React.ReactElement {
return <div className={clsx(className, "w-full")}>Content !</div>;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment