main
js 26 lines 577 Bytes
Raw
1 /**
2 * Copyright (c) Meta Platforms, Inc. and affiliates.
3 *
4 * This source code is licensed under the MIT license found in the
5 * LICENSE file in the root directory of this source tree.
6 *
7 */
8
9 export default function Sidebar() {
10 return (
11 <>
12 <h1>Archive</h1>
13 <ul>
14 <li>May 2021</li>
15 <li>April 2021</li>
16 <li>March 2021</li>
17 <li>February 2021</li>
18 <li>January 2021</li>
19 <li>December 2020</li>
20 <li>November 2020</li>
21 <li>October 2020</li>
22 <li>September 2020</li>
23 </ul>
24 </>
25 );
26 }