fix Yoga imports for build script

Summary: The bundling of gatsby is done in node. This caused the node-libs from yoga being loaded. This directly imports the browser version.

Reviewed By: emilsjolander

Differential Revision: D6975779

fbshipit-source-id: 0257a86733c5552259b171309e59cc676786621e
This commit is contained in:
Daniel Büchele
2018-02-13 06:13:25 -08:00
committed by Facebook Github Bot
parent c830083df3
commit a3144150e0
8 changed files with 8 additions and 8 deletions

View File

@@ -11,7 +11,7 @@
*/
import React, {Component} from 'react';
import yoga from 'yoga-layout';
import yoga from 'yoga-layout/dist/entry-browser';
import {Radio, Menu, Dropdown, Button, Icon} from 'antd';
import './YogaEnumSelect.css';
const RadioButton = Radio.Button;