Skip to content

Instantly share code, notes, and snippets.

@zafar-saleem
Created February 15, 2023 07:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zafar-saleem/a18a27d5b9d9481834a957a64a1fda84 to your computer and use it in GitHub Desktop.
Save zafar-saleem/a18a27d5b9d9481834a957a64a1fda84 to your computer and use it in GitHub Desktop.
import styled from 'styled-components';
import { Board } from 'board';
const Col = styled.div`
padding: 1em;
box-sizing: border-box;
border-right: 1px solid #ccc;
`;
export default function Web() {
return (
<div>
<h1 style={{textAlign: 'center'}}>Kanban Board</h1>
<Board>
<Col>
<h2>TO DO</h2>
<button>Add</button>
</Col>
<Col>
<h2>IN PROGRESS</h2>
</Col>
<Col>
<h2>TESTING</h2>
</Col>
<Col>
<h2>DONE</h2>
</Col>
</Board>
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment