We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello, I'm using ReactTerminal with ReactDOMServer, my main component looks like this:
import React, { Component } from "react" import ReactTerminal, { ReactThemes } from "react-terminal-component" export default class App extends Component { render() { return ( <div> <ReactTerminal /> </div> ) } }
And then I render it on the page using ReactDOMServer.renderToString(<App />). Tho, there's no style: Can anyone help me? Thanks
ReactDOMServer.renderToString(<App />)
The text was updated successfully, but these errors were encountered:
I have a very similar behavior found:
After a reload is is displayed as desired.
Even with reload, this doesn't change.
UPDATE: When not using a theme = in the TerminalApp, then this issue isn't present. Searching for a workaround for theming now.
Sorry, something went wrong.
No branches or pull requests
Hello,
I'm using ReactTerminal with ReactDOMServer, my main component looks like this:
And then I render it on the page using
ReactDOMServer.renderToString(<App />)
. Tho, there's no style:Can anyone help me? Thanks
The text was updated successfully, but these errors were encountered: