Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-tags-html

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-tags-html - npm Package Compare versions

Comparing version 0.0.2 to 0.0.3

2

package.json
{
"name": "react-tags-html",
"version": "0.0.2",
"version": "0.0.3",
"main": "index.js",

@@ -5,0 +5,0 @@ "module": "src/index.js",

import React, { Component } from 'react';
import { View } from 'react-native';
import { Platform } from 'src/components';
import { Platform } from '../';
class Div extends Component {
render () {
if(Platform.isNative) {

@@ -20,2 +20,2 @@ return <View>{children}</View>

export default Div;
export default Div;
import React, { Component } from 'react';
import { Button as ReactButton } from 'react-native';
import { Platform } from 'src/components';
import { Platform } from '../';
class Button extends Component {
render () {
if(Platform.isNative) {

@@ -20,2 +20,2 @@ return <ReactButton>{children}</ReactButton>

export default Button;
export default Button;
import React, { Component } from 'react';
import { View } from 'react-native';
import { Platform } from 'src/components';
import { Platform } from '../';
class Div extends Component {
render () {
if(Platform.isNative) {

@@ -20,2 +20,2 @@ return <View>{children}</View>

export default Div;
export default Div;
import React, { Component } from 'react';
import { Text } from 'react-native';
import { Platform } from 'src/components';
import { Platform } from '../';
class H extends Component {
render () {
if(Platform.isNative) {

@@ -58,2 +58,2 @@ switch(type){

export default H;
export default H;
import React, { Component } from 'react';
import { Image } from 'react-native';
import { Platform } from 'src/components';
import { Platform } from '../';
class Img extends Component {
render () {
if(Platform.isNative) {

@@ -20,2 +20,2 @@ return <Image source={{src}}/>

export default Img;
export default Img;
import React, { Component } from 'react';
import { TextInput } from 'react-native';
import { Platform } from 'src/components';
import { Platform } from '../';
class Input extends Component {
render () {
if(Platform.isNative) {

@@ -20,2 +20,2 @@ return <TextInput />

export default Input;
export default Input;
import React, { Component } from 'react';
import { View } from 'react-native';
import { Platform } from 'src/components';
import { Platform } from '../';
class Li extends Component {
render () {
if(Platform.isNative) {

@@ -20,2 +20,2 @@ return <View>{children}</View>

export default Li;
export default Li;

@@ -23,8 +23,7 @@ import React, { Component } from 'react';

}
return null;
}
};
export default Platform;
export default Platform;
import React, { Component } from 'react';
import { View } from 'react-native';
import { Platform } from 'src/components';
import { Platform } from '../';
class Span extends Component {
render () {
if(Platform.isNative) {

@@ -20,2 +20,2 @@ return <View>{children}</View>

export default Span;
export default Span;
import React, { Component } from 'react';
import { View } from 'react-native';
import { Platform } from 'src/components';
import { Platform } from '../';
class Ul extends Component {
render () {
if(Platform.isNative) {

@@ -20,2 +21,2 @@ return <View>{children}</View>

export default Ul;
export default Ul;
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc