GithubHelp home page GithubHelp logo

Comments (7)

casesandberg avatar casesandberg commented on May 17, 2024

Hey, really sorry about that @bramdevries, I had the package.json pointing to the .coffee files instead of the compiled .js ones. If you go ahead and update reactcss to 0.3.1 on NPM that should solve the issue!

from reactcss.

bramdevries avatar bramdevries commented on May 17, 2024

Just updated to 0.3.1 and now I get the following:

>> Error: Cannot find module '../src/check-class-structure' from 'node_modules/reactcss/lib'

Seems like it's going wrong here: https://github.com/casesandberg/reactcss/blob/master/src/inline.coffee#L4

from reactcss.

casesandberg avatar casesandberg commented on May 17, 2024

Hey @bramdevries, There was a legacy require in there, it should be fixed now if you update to 0.3.2

abdd96d

from reactcss.

bramdevries avatar bramdevries commented on May 17, 2024

Hmm it's solved the compile errors, but now I'm getting runtime errors:

import ReactCSS from 'reactcss';

export default class SideMenu extends ReactCSS.Component {

    classes() {
        return {
            'default': {
                sidemenu: {
                    background: 'red'
                }
            }
        }
    }

    render() {
        return (
            <div is='sidemenu' />
        );
    }
};

Gives this error:

Uncaught ReferenceError: React is not defined

from reactcss.

casesandberg avatar casesandberg commented on May 17, 2024

Does adding this make it work?

import React from 'react';

Or are you not importing react where you are rendering it?

from reactcss.

bramdevries avatar bramdevries commented on May 17, 2024

Okay so doing this worked:

import React from 'react/addons';
import ReactCSS from 'reactcss';

export default class SideMenu extends ReactCSS.Component {

    classes() {
        return {
            'default': {
                sidemenu: {
                    background: 'red'
                }
            }
        }
    }

    render() {
        return (
            <div style={this.styles().sidemenu}>
                <p>Test</p>
            </div>
        );
    }
};

The documentation doesn't mention having to import both React and ReactCSS, I assumed ReactCSS replaced React

from reactcss.

casesandberg avatar casesandberg commented on May 17, 2024

You are totally right, that is my bad. I will update that now!

Thanks for working through this with me

from reactcss.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.