Skip to content

Commit

Permalink
Merge branch 'main' of github.com:facebook/stylex into cli-cache
Browse files Browse the repository at this point in the history
  • Loading branch information
mellyeliu committed Dec 13, 2024
2 parents e98d508 + 848bd85 commit dd32a5c
Show file tree
Hide file tree
Showing 11 changed files with 1,089 additions and 91 deletions.
4 changes: 3 additions & 1 deletion apps/rollup-example/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@

import stylex from '@stylexjs/stylex';
import { lotsOfStyles } from './lotsOfStyles';
import { lotsOfStylesDynamic } from './lotsOfStylesDynamic.js';

const styles = lotsOfStyles.map((defs) => Object.values(defs));
const dynamicStyles = lotsOfStylesDynamic.map((defs) => Object.values(defs));

export default function App() {
return stylex.props(styles);
return stylex.props(styles, dynamicStyles);
}
Loading

0 comments on commit dd32a5c

Please sign in to comment.