Files
payloadcms/demo/client/index.js
2018-07-28 09:56:35 -04:00

17 lines
267 B
JavaScript

import React from 'react';
import { render } from 'react-dom';
import App from 'payload/client/components/App';
import './testStyles.css';
const Index = () => {
return (
<div>
<App/>
</div>
)
}
render(<Index />, document.getElementById('app'));