pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame^] | 1 | import react, { Component } from "react"; |
| 2 | import Styles from '../styles/Components/cardrow.module.css'; |
| 3 | |
| 4 | class Docs extends Component { |
| 5 | /* |
| 6 | Properties: |
| 7 | - header: Header component |
| 8 | Children: |
| 9 | - List of sections |
| 10 | */ |
| 11 | constructor(props) { |
| 12 | super(props); |
| 13 | } |
| 14 | |
| 15 | render() { |
| 16 | return "a" |
| 17 | } |
| 18 | } |
| 19 | |
| 20 | class Section extends Component { |
| 21 | /* |
| 22 | |
| 23 | */ |
| 24 | constructor(props) { |
| 25 | super(props); |
| 26 | } |
| 27 | |
| 28 | render() { |
| 29 | return "a" |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | |
| 34 | |
| 35 | export default CardRow; |