Skip to content

Instantly share code, notes, and snippets.

Created February 24, 2015 18:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/87fe4a3b6849a4ffaddb to your computer and use it in GitHub Desktop.
Save anonymous/87fe4a3b6849a4ffaddb to your computer and use it in GitHub Desktop.
import React from 'react';
import { LeftDropZone } from './leftDropZone';
import { RightDropZone } from './rightDropZone';
export class ScholarshipsApp extends React.component {
render() {
return (
<section id="drop-zones">
<h1>Scholarships Admin</h1>
<LeftDropZone />
<RightDropZone />
</section>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment