This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Made by Erik Terwan | |
* [email protected] | |
* https://erikterwan.com | |
* | |
* All rights reserved | |
* | |
* Created on 2019-03-26 | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#set( $regex = "([a-z])([A-Z]+)") | |
#set( $replacement = "$1-$2") | |
#set( $COMPONENT_NAME_KEBAB = $COMPONENT_NAME.replaceAll($regex, $replacement).toLowerCase()) | |
<template> | |
<div class="$COMPONENT_NAME"> | |
#[[$END$]]# | |
</div> | |
</template> | |
<script type="text/babel"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <UIKit/UIKit.h> | |
@interface DateFlowLayout : UICollectionViewFlowLayout | |
@end |