Skip to content

symdiff/symdiff-jsx

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

symdiff-jsx

Build Status Coverage Status

Supports only JSX literals for now.

import React from 'react';
class Test extends React.Component {
    render() {
        var works = false;
        return <div className="this works">
                    <div className={works ? "nope" : "sorry"} />
                </div>;
    }
}