Fretboard component written in React.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

15 satır
277 B

  1. import 'react-app-polyfill/ie11';
  2. import * as React from 'react';
  3. import * as ReactDOM from 'react-dom';
  4. import Fretboard from '../.';
  5. const App = () => {
  6. return (
  7. <div>
  8. <Fretboard />
  9. </div>
  10. );
  11. };
  12. ReactDOM.render(<App />, document.getElementById('root'));