UNPKG
emmaramirez.me
Version:
latest (0.15.0)
0.15.0
0.14.5
0.14.4
0.13.4
0.13.3
0.13.2
0.13.1
0.13.0
0.12.0
0.11.2
0.11.0
0.10.8
0.10.5
0.10.4
0.10.3
0.10.2
0.10.1
0.10.0
0.9.0
0.8.0
0.7.1
0.7.0
0.6.6
0.6.5
0.6.4
0.6.3
0.6.2
0.6.1
0.6.0
0.5.0
0.0.0-development
emma's personal website
github.com/EmmaRamirez/emmaramirez.me
EmmaRamirez/emmaramirez.me
emmaramirez.me
/
src
/
utils
/
Component.ts
8 lines
(6 loc)
•
156 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
export
abstract
class
Component
<
P
= {}> { constructor(
public
props: P) {
this
.props = props; }
public
abstract
render
():
string
|
null
; }