~doom.d -> Doom/.doom.d

Proper naming, GNU/Stow style.
This commit is contained in:
dx
2020-04-24 02:53:57 +01:00
parent e3e4bd9710
commit c65cf688fc
31 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
# -*- mode: snippet -*-
# name: New component
# key: rce
# --
import React, { Component } from 'react';
class $1 extends Component {
state = {};
render() {
return (
<div>
$0
</div>
)
}
}
export default $1