Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

esx.renderToString._r is not a function #3

Open
irudoy opened this issue Oct 19, 2019 · 1 comment
Open

esx.renderToString._r is not a function #3

irudoy opened this issue Oct 19, 2019 · 1 comment

Comments

@irudoy
Copy link

irudoy commented Oct 19, 2019

Input

import React from 'react';
import ReactDOMServer from 'react-dom/server';

function foo() {
  const A = () => <div/>;
  ReactDOMServer.renderToString(<A/>);
};

Output

const esx = require('esx')();
import React from 'react';
import ReactDOMServer from 'react-dom/server';

function foo() {
  const A = () => esx `<div/>`;
  esx.renderToString._r("A", A) `<A/>`;
};
@irudoy
Copy link
Author

irudoy commented Aug 15, 2020

test('React.renderToString inside a function', async ({ is }) => {
  const src =
`import React from 'react';
import ReactDOMServer from 'react-dom/server';
function foo() {
  const A = () => <div/>;
  ReactDOMServer.renderToString(<A/>);
};`
  const esx =
`const esx = require('esx')();
import React from 'react';
import ReactDOMServer from 'react-dom/server';
function foo() {
  const A = () => esx \`<div/>\`;
  esx.renderToString("A", A) \`<A/>\`;
};`
  is(convert(src), esx)
})

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant