Skip to content

Instantly share code, notes, and snippets.

View dallas-x's full-sized avatar

Dallas Baker dallas-x

View GitHub Profile
@dallas-x
dallas-x / App.js
Created March 21, 2021 23:45
antd table
import React from "react";
import ReactDOM from "react-dom";
import EventsSection from "./EventsSection";
function App() {
return (
<div className="App">
<EventsSection />
</div>
);