14 lines
251 B
Plaintext
14 lines
251 B
Plaintext
# -*- mode: snippet -*-
|
|
# name: React Class Component
|
|
# key: rcc
|
|
# --
|
|
import React, { Component } from 'react';
|
|
import $1 from 'react-native';
|
|
|
|
class $2 extends Component {
|
|
render() {
|
|
$0
|
|
}
|
|
}
|
|
|
|
export default ${2:$(yas-text)}; |