15 lines
234 B
JavaScript
15 lines
234 B
JavaScript
function Component(props) {
|
|
const x = [];
|
|
const y = x.map(item => {
|
|
item.updated = true;
|
|
return item;
|
|
});
|
|
return [x, y];
|
|
}
|
|
|
|
export const FIXTURE_ENTRYPOINT = {
|
|
fn: Component,
|
|
params: [{}],
|
|
isComponent: false,
|
|
};
|