React Router v7 已发布。 查看文档
CSS 模块

CSS Modules

此文档仅在使用 Classic Remix Compiler 时适用。如果您正在使用 Remix Vite,则对 CSS Modules 的支持已内置在 Vite 中

要使用内置的 CSS Modules 支持,请首先确保您已在应用程序中设置了 CSS 打包

然后,您可以通过 .module.css 文件名约定选择加入 CSS Modules。例如

.root {
  border: solid 1px;
  background: white;
  color: #454545;
}
import styles from "./styles.module.css";

export const Button = React.forwardRef(
  ({ children, ...props }, ref) => {
    return (
      <button
        {...props}
        ref={ref}
        className={styles.root}
      />
    );
  }
);
Button.displayName = "Button";
文档和示例根据 MIT