yandex / reselector

Use React Components in css selectors
https://npm.im/reselector
Other
44 stars 10 forks source link

Reselector fails on components declared as shorthand methods of objects #49

Closed myshov closed 5 years ago

myshov commented 5 years ago

Hello! For example this code can cause an error:

import React from 'react';

export const placeholders = {
    SnippetScrollbox() {
        return <div></div>;
    },
}