rofrischmann/alveron

View on GitHub
website/pages/playground/todo.js

Summary

Maintainability
A
0 mins
Test Coverage
import * as React from 'react'
import { Box } from 'kilvin'

import TodoList from '../../examples/TodoList'

export default function Page() {
  return (
    <Box padding={10}>
      <TodoList />
    </Box>
  )
}