mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 04:32:01 +03:00
8 lines
147 B
JavaScript
8 lines
147 B
JavaScript
|
import { bar } from './Bar';
|
||
|
|
||
|
const makeX = (props) => {
|
||
|
const _bar = props.bar;
|
||
|
const { list } = _bar;
|
||
|
|
||
|
return list.map(() => bar);
|
||
|
};
|