Created
February 24, 2015 18:46
-
-
Save anonymous/87fe4a3b6849a4ffaddb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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