Skip to content

Instantly share code, notes, and snippets.

View mariacheline's full-sized avatar
✌️
Exploring

Cheline Magsano mariacheline

✌️
Exploring
View GitHub Profile
@mariacheline
mariacheline / react-tooltip.d.ts
Created June 27, 2023 10:46
react-tooltip types v4
import * as React from 'react';
interface Offset {
top?: number;
right?: number;
left?: number;
bottom?: number;
}
type Place = 'top' | 'right' | 'bottom' | 'left';
.navToggle {
display: block;
background-color: transparent;
border: none;
height: 38px;
width: 38px;
padding: 8px 8px;
margin: 10px -8px 10px 0px;
outline: none;
cursor: pointer;
@mariacheline
mariacheline / sidebar.js
Last active November 26, 2018 06:51
Integrating React Router with AntD
import React from 'react';
import { Link } from 'react-router-dom';
import { Layout, Menu, Icon } from 'antd';
const { SubMenu } = Menu;
const { Header, Content, Footer, Sider } = Layout;
export const Sidebar = () => {
return(
<Sider className="sidebar" width={280} style={{ background: '#fafafa' }}>
@mariacheline
mariacheline / index.html
Last active August 6, 2017 11:05
WERpXK
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script type='text/javascript' src=https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.6.0/Chart.js></script>
<!-- <script type='text/javascript' src='scripts/ImpChart.js'></script> -->
@mariacheline
mariacheline / index.html
Last active January 31, 2017 11:59
Page Scroll To ID
<div class="pagewrap">
<nav>
<ul>
<li><a href="#one">One</a></li>
<li><a href="#two">Two</a></li>
<li><a href="#three">Three</a></li>
</ul>
<div class="toggle-icon">
<span></span>