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 { lazy } from "react"; | |
const PushEvent = lazy(() => import(`./PushEvent`)); | |
const ReleaseEvent = lazy(() => import(`./ReleaseEvent`)); | |
const StatusEvent = lazy(() => import(`./StatusEvent`)); | |
const NullEvent = lazy(() => import(`./NullEvent`)); | |
export { PushEvent, ReleaseEvent, StatusEvent, NullEvent }; |
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"; | |
const NullEvent = () => <></>; | |
export default NullEvent; |
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"; | |
const PushEvent = () => <div class="event">Push Event</div>; | |
export default PushEvent; |
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"; | |
const ReleaseEvent = () => <div class="event">Release Event</div>; | |
export default ReleaseEvent; |
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"; | |
const StatusEvent = () => <div class="event">Status Event</div>; | |
export default StatusEvent; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment